import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; import type * as React from "react"; declare const filterChipVariants: (props?: ({ size?: "sm" | "lg" | "md" | null | undefined; selected?: boolean | null | undefined; } & ClassProp) | undefined) => string; export type FilterChipProps = VariantProps & Omit, "type">; /** * A selectable pill button — the shared shell behind category, tool-type, and * toolbar toggle chips. Owns the rounded-full shape, focus ring, press * animation, and selected/unselected color states so molecules stay in sync. */ export declare function FilterChip({ className, size, selected, ...props }: FilterChipProps): React.JSX.Element; export { filterChipVariants }; //# sourceMappingURL=filter-chip.d.ts.map