9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
|
|
import type { TransferPropsAlias } from '../transfer';
|
||
|
|
export declare const usePropsAlias: (props: {
|
||
|
|
props: TransferPropsAlias;
|
||
|
|
}) => import("vue").ComputedRef<{
|
||
|
|
label: string;
|
||
|
|
key: string;
|
||
|
|
disabled: string;
|
||
|
|
}>;
|