import type { Ref } from 'vue'; export type SizeType = 'small' | 'middle' | 'large' | undefined; export declare const useInjectSize: () => Ref; export declare const useProviderSize: (size: Ref) => Ref;