import { Props, Emits, Base64DataItem } from './types'; import { Ref, ComputedRef } from 'vue'; export declare const useHandle: (props: Readonly, emit: Emits) => { base64Data: Ref<{ base64: string; animation: string; }[], Base64DataItem[] | { base64: string; animation: string; }[]>; }; /** * 样式 */ export declare const useStyle: (props: Readonly) => { getStyle: ComputedRef<{ width: string | number; height: string | number; }>; };