export declare const BUTTON_SIZES: readonly ["sm", "md", "lg"]; export declare const BUTTON_VARIANTS: readonly ["primary", "secondary", "strict", "neutral", "destructive"]; export declare const BUTTON_APPEARANCES: readonly ["filled", "outlined", "text"]; export declare const BUTTON_SHAPES: readonly ["rectangular", "circular"]; export declare const BUTTON_TYPES: readonly ["button", "submit", "reset"]; export type ButtonSize = (typeof BUTTON_SIZES)[number]; export type ButtonVariant = (typeof BUTTON_VARIANTS)[number]; export type ButtonAppearance = (typeof BUTTON_APPEARANCES)[number]; export type ButtonShape = (typeof BUTTON_SHAPES)[number]; export type ButtonType = (typeof BUTTON_TYPES)[number];