export interface AffixProps { /** * Root element `z-index` property, * @default 200 */ zIndex?: string | number; /** * Affix position on screen * @default "{ bottom: 24, right: 16 }" */ position?: { top?: string | number; left?: string | number; bottom?: string | number; right?: string | number; }; children?: React.ReactNode; className?: string; } export declare function Affix(props: AffixProps): import("react").JSX.Element;