import { CommonProps, type Styleable } from "@trackunit/react-components"; import { ReactNode, Ref } from "react"; export interface FilterBodyProps extends CommonProps, Styleable { /** * Children to render in the body of the filter. * This is intended for FilterItems. */ children?: ReactNode; limitSize?: boolean; /** * A ref for the component */ ref?: Ref; } /** * The FilterBody component is used to display the title of the filter and a reset button. * IT is intended for use in the Filter component. * The reset button will be enabled if the showReset prop is set to true. * * @param {FilterBodyProps} props - The props for the FilterBody component */ export declare const FilterBody: { ({ children, className, "data-testid": dataTestId, limitSize, ref, style, ...rest }: FilterBodyProps): import("react/jsx-runtime").JSX.Element; displayName: string; };