import { CommonProps, Refable, type Styleable } from "@trackunit/react-components"; import { ReactNode } from "react"; export interface FilterFooterProps extends CommonProps, Refable, Styleable { /** * Items to render in the filter footer */ children?: ReactNode; } /** * The FilterFooter component is a container component for filter footer content. * It provides a flexible layout with right-aligned content for filter components. * * @param {FilterFooterProps} props - The props for the FilterFooter component * @returns {ReactElement} FilterFooter component */ export declare const FilterFooter: ({ className, "data-testid": dataTestId, children, ref, style, ...rest }: FilterFooterProps) => import("react/jsx-runtime").JSX.Element; export declare const cvaFilterFooter: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;