import * as React from "react"; import * as react_jsx_runtime68 from "react/jsx-runtime"; //#region src/components/molecules/FiltersToolbar.d.ts interface ActiveFilterChip { key: string; label: React.ReactNode; onRemove?: () => void; } interface FiltersToolbarProps { className?: string; children?: React.ReactNode; right?: React.ReactNode; searchPlaceholder?: string; searchValue?: string; onSearchChange?: (value: string) => void; onSearchSubmit?: () => void; debounceMs?: number; activeChips?: ActiveFilterChip[]; onClearAll?: () => void; } declare function FiltersToolbar({ className, children, right, searchPlaceholder, searchValue, onSearchChange, onSearchSubmit, debounceMs, activeChips, onClearAll }: FiltersToolbarProps): react_jsx_runtime68.JSX.Element; //#endregion export { FiltersToolbar }; //# sourceMappingURL=FiltersToolbar.d.ts.map