import React from 'react'; import { type GlassVariant } from '../../../lib/glass'; export type ChickletVariant = 'rounded' | 'rectangular'; export type ChickletState = 'default' | 'hover'; export interface ChickletProps { /** The text content of the chicklet */ label?: React.ReactNode; /** Whether the chicklet has rounded corners (pill) or rectangular corners */ variant?: ChickletVariant; /** Whether to show border */ bordered?: boolean; /** Callback when the close icon is clicked */ onClose?: (e?: React.MouseEvent) => void; /** Callback when the chicklet is clicked */ onClick?: () => void; /** Whether the chicklet is disabled */ disabled?: boolean; /** Additional CSS classes */ className?: string; children?: React.ReactNode; color?: string; /** Glass morphism variant */ glass?: GlassVariant; } export declare const Chicklet: React.ForwardRefExoticComponent>; export default Chicklet; //# sourceMappingURL=Chicklet.d.ts.map