import type { ComputedRef, Ref } from 'vue'; import type { MaybeRef, ComponentSize } from '../types'; export declare const useSize: (fallback?: MaybeRef, ignore?: Partial>) => ComputedRef; export interface SizeContext { size: Ref; } export declare const useGlobalSize: () => ComputedRef;