export default List; declare function List({ children, className, component: Component, label, scrollBehavior, stickyHeaders, stickTo }: { children: any; className?: string; component?: string; label?: string; scrollBehavior?: ScrollBehavior; stickyHeaders?: boolean; stickTo?: "all" | "top" | "bottom"; }): any; declare namespace List { export namespace propTypes { export const children: any; export const className: any; export const component: any; export const label: any; export const scrollBehavior: any; export const stickyHeaders: any; export const stickTo: any; } export namespace defaultProps { const className_1: string; export { className_1 as className }; const component_1: string; export { component_1 as component }; const label_1: string; export { label_1 as label }; const scrollBehavior_1: string; export { scrollBehavior_1 as scrollBehavior }; const stickyHeaders_1: boolean; export { stickyHeaders_1 as stickyHeaders }; const stickTo_1: string; export { stickTo_1 as stickTo }; } }