import { NoStyleButton } from '../../no-style-button.js'; import { InferComponentProps } from '../../types.js'; export type ChipProps = InferComponentProps & { selected?: boolean; /** @deprecated */ size?: 'small' | 'large'; }; export declare const ChipIcon: import("react").ComponentType & import("react").HTMLAttributes & { name: string; className?: string; isFilled?: boolean; size?: import("../icon/icon.js").SizeMapType; }, never>>; /** Wayfinder chip */ export declare const Chip: import("react").ForwardRefExoticComponent & import("react").RefAttributes, never>> & string & Omit & import("react").RefAttributes>, keyof import("react").Component>> & { selected?: boolean; /** @deprecated */ size?: "small" | "large"; } & import("react").RefAttributes>;