import React from "react";
interface ChipProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onChange"> {
    /** Label text displayed inside the chip */
    label: string;
    /** Whether the chip is currently active/selected */
    active?: boolean;
    /** Callback fired when the chip is toggled */
    onChange?: (active: boolean) => void;
    /** Icon rendered before the label */
    icon?: React.ReactNode;
}
export declare const Chip: React.FC<ChipProps>;
export {};
