import * as React from 'react'; export declare type Suggestions = { label: string | React.ReactNode; key: any; options?: Suggestions; }[]; export interface ToolbarProps { className?: string; enableBatchActions: boolean; enableSettingMenu?: boolean; onDisableBatchActions?: () => void; enableFilters?: boolean; settingMenu?: React.ReactNode; settingMenuText?: string; toolbarLeft?: React.ReactNode; toolbarRight?: React.ReactNode; batchActions?: React.ReactNode; filterProps: { filters?: any; placeholder?: string; suggestions: Suggestions; simpleMode?: boolean; onChange?: (value: any) => void; initialKeyword?: string; disabled?: boolean; }; onFilterInputChange?: (value: any) => void; refetch?: any; loading?: boolean; refreshDisabled?: boolean; settingMenuDisabled?: boolean; } export declare const Toolbar: (props: ToolbarProps) => React.JSX.Element; //# sourceMappingURL=index.d.ts.map