import * as React from 'react'; import { StandardProps } from '../../common'; export interface StickyProps extends StandardProps { children: React.ReactNode; /** * Property which determines where the component should stick * Default is bottom */ position?: 'bottom' | 'top' | 'left' | 'right'; } export declare const Sticky: React.SFC & { inner: { readonly StyledSticky: any; }; };