import { ComponentType } from '../type'; export declare const STYLE_WRAPPER_TYPE: { readonly RELATIVE: "RELATIVE"; readonly FIXED: "FIXED"; }; declare type WrapOptions = { type?: keyof typeof STYLE_WRAPPER_TYPE; }; export declare const wrapWithSizer: ((Component: ComponentType, options?: WrapOptions | undefined) => ComponentType) & { readonly RELATIVE: "RELATIVE"; readonly FIXED: "FIXED"; }; export {};