export declare const ChipColor: { readonly ERROR: "error"; readonly NEUTRAL: "neutral"; readonly SUCCESS: "success"; readonly UPGRADE: "upgrade"; readonly WARNING: "warning"; }; export type ChipColor = (typeof ChipColor)[keyof typeof ChipColor]; export declare const ChipSize: { readonly MD: "md"; }; export type ChipSize = (typeof ChipSize)[keyof typeof ChipSize]; export declare const ChipVariant: { readonly PRIMARY: "primary"; }; export type ChipVariant = (typeof ChipVariant)[keyof typeof ChipVariant];