import { ComponentProps, FunctionComponent } from 'react'; import { Box } from '../Box'; export interface StickyBoxProps extends ComponentProps { top?: 'none' | '1' | '2' | '3' | '5' | '7' | 'subHeader'; bottom?: 'none' | '1' | '2' | '3' | 'subHeader'; zIndex?: 0 | 1 | 2 | 3 | 99; noPopShadow?: boolean; className?: string; } export declare const StickyBox: FunctionComponent; //# sourceMappingURL=StickyBox.d.ts.map