UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

19 lines 675 B
import { default as React, FC } from 'react'; import { ButtonProps } from '../Button'; import { SearchbarProps } from '../Field/Search'; import { DropdownOption } from '../Field/Dropdown/Regular'; import { ToolbarStyles } from '../../theme'; export interface CustomToolbarProps { buttons?: ButtonProps[]; searchbarProps?: SearchbarProps; filterDropdown?: { label?: string; options: DropdownOption[]; value: string; onChange: (e: React.ChangeEvent<HTMLSelectElement>) => void; }; styles?: ToolbarStyles; } declare const CustomToolbar: FC<CustomToolbarProps>; export default CustomToolbar; //# sourceMappingURL=index.d.ts.map