import { ReactElement } from 'react'; type ListTabToolbarConfig = { label: string; key: string; icon?: ReactElement; filter: Record; default?: boolean; }; interface ListTabsToolbarProps { tabs?: ListTabToolbarConfig[]; } declare function ListTabsToolbar({ tabs }: ListTabsToolbarProps): import("react/jsx-runtime").JSX.Element | null; export { type ListTabToolbarConfig, ListTabsToolbar }; //# sourceMappingURL=ListTabsToolbar.d.ts.map