export interface ElementScale { x: number; y: number; } export interface UseElementScaleOptions { observe?: boolean; } export declare function getElementScale(element?: Element | null): ElementScale; export declare function getElementScaleX(element?: Element | null): number; export declare function getElementScaleY(element?: Element | null): number; export declare function useElementScale(element?: Element | null, options?: UseElementScaleOptions): ElementScale; export declare function useElementScaleX(element?: Element | null, options?: UseElementScaleOptions): number; export declare function useElementScaleY(element?: Element | null, options?: UseElementScaleOptions): number; export default useElementScale;