export declare const CHIP_SIZES: readonly ["small", "medium"]; export type ChipSize = (typeof CHIP_SIZES)[number]; export declare const CHIP_COLORS: readonly ["default", "primary", "info", "error", "warning", "success", "dark"]; export type ChipColor = (typeof CHIP_COLORS)[number]; export declare const CHIP_VARIANTS: readonly ["filled", "outlined"]; export type ChipVariant = (typeof CHIP_VARIANTS)[number];