import * as React from 'react'; export interface TableToolbarProps { dataHook?: string; children?: React.ReactNode; className?: string; removeVerticalPadding?: boolean; } interface ItemGroupProps { dataHook?: string; children?: React.ReactNode; className?: string; position?: string; } interface ItemProps { dataHook?: string; children?: React.ReactNode; className?: string; layout?: 'button'; } interface TitleProps { children?: React.ReactNode; className?: string; dataHook?: string; } interface LabelProps { children?: React.ReactNode; className?: string; dataHook?: string; } interface DividerProps { children?: React.ReactNode; className?: string; dataHook?: string; } interface SelectedCountProps { children?: React.ReactNode; className?: string; dataHook?: string; } declare const ItemGroup: React.FC; declare const Item: React.FC; declare const Title: React.FC; declare const Label: React.FC; declare const Divider: React.FC; declare const SelectedCount: React.FC; export declare const TableToolbar: React.FC & { ItemGroup: typeof ItemGroup; Item: typeof Item; Title: typeof Title; Label: typeof Label; Divider: typeof Divider; SelectedCount: typeof SelectedCount; }; export default TableToolbar;