import { type VariantProps } from 'class-variance-authority'; import { ComponentProps, ReactNode } from 'react'; declare const chip: (props?: ({ variant?: "outline" | "filled" | null | undefined; size?: "small" | "large" | null | undefined; color?: "accent" | "neutral" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ChipProps = ComponentProps<'span'> & VariantProps & { trailingIcon?: ReactNode; leadingIcon?: ReactNode; isDismissible?: boolean; children: ReactNode; onDismiss?: () => void; disabled?: boolean; }; export declare const Chip: { ({ variant, size, color, trailingIcon, leadingIcon, isDismissible, children, className, onDismiss, onClick, role, disabled, "aria-label": ariaLabel, ...props }: ChipProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=chip.d.ts.map