type Variant = 'primary' | 'neutral' | 'warning' | 'success' | 'destructive';
type Shade = '50' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | '950';
export type Colorable = {
    variant?: Variant;
    shade?: Shade;
};
export {};
