import React from 'react'; export interface AffixProps { children?: React.ReactNode; /** * The y position of the affix when it is shown. Default is 30. */ displayPosition?: number; position?: { bottom?: number; left?: number; right?: number; top?: number; }; /** * If true, on click to children, the page will scroll to top. */ scrollToTopOnClick?: boolean; target?: HTMLElement; zIndex?: number; } declare const Affix: React.FunctionComponent; export { Affix };