export declare const INPUT_CHIP_SIZES: readonly ["md", "lg"]; export declare const INPUT_CHIP_VARIANTS: readonly ["default", "destructive"]; export declare const INPUT_CHIP_ERROR_CODES: readonly ["pattern", "duplicate", "max"]; export type InputChipSize = (typeof INPUT_CHIP_SIZES)[number]; export type InputChipVariant = (typeof INPUT_CHIP_VARIANTS)[number]; export type InputChipErrorCode = (typeof INPUT_CHIP_ERROR_CODES)[number]; export interface InputChipChangeDetail { chips: string[]; } export interface InputChipAddDetail { chip: string; chips: string[]; } export interface InputChipRemoveDetail { chip: string; index: number; chips: string[]; } export interface InputChipErrorDetail { code: InputChipErrorCode; value: string; message: string; }