import type { Ref } from 'vue'; export interface ComponentSizeProps { componentName: string; currentSize: Ref; } export declare function useComponentSize(props: ComponentSizeProps): { size: import("vue").ComputedRef; };