/** * A trigger component that has the same visual style as FilterSelectBox's trigger. * It does not manage popover state internally and is intended to be used with the Popover component. */ export declare const FilterTrigger: import("react").ForwardRefExoticComponent<{ label: string; value?: string; inputProps?: Omit, "type">; className?: string; enableClearButton?: boolean; clearButtonProps?: { "aria-label"?: string; onClick?: (event: React.MouseEvent) => void; }; } & Omit, HTMLButtonElement>, "ref">, "children"> & import("react").RefAttributes>;