/// export interface PaneListProps extends React.HTMLProps { isSticky?: boolean; stickyTop?: string; } export interface PaneListItemProps extends React.HTMLProps { children: React.ReactNode; selected?: boolean; } declare const PaneListItem: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export { PaneListItem }; export declare const PaneList: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & { Item: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; };