import type { ReactNode } from 'react';
export type FilterToolbarProps = {
    className?: string;
    children?: ReactNode;
};
declare function FilterToolbar({ className, children }: FilterToolbarProps): import("react/jsx-runtime").JSX.Element;
declare namespace FilterToolbar {
    var Actions: typeof FilterToolbarActions;
}
export type FilterToolbarActionsProps = {
    className?: string;
    children?: ReactNode;
};
declare function FilterToolbarActions({ className, children, }: FilterToolbarActionsProps): import("react/jsx-runtime").JSX.Element;
export default FilterToolbar;
