import { ArgTypes } from '@storybook/html'; declare const SizeOptions: readonly ["small", "medium", "large"]; export declare const SizeArgTypes: ArgTypes; export type Size = (typeof SizeOptions)[number]; declare const ShapeOptions: readonly ["round", "square"]; export declare const ShapeArgTypes: { options: readonly ["round", "square"]; control: { type: string; }; }; export type Shape = (typeof ShapeOptions)[number]; declare const ColorOptions: readonly ["primary", "secondary", "tertiary"]; export declare const ColorArgTypes: ArgTypes; export type Color = (typeof ColorOptions)[number]; declare const EmphasisOptions: readonly ["slight", "s", "moderate", "m", "high", "h"]; export declare const EmphasisArgTypes: ArgTypes; export type Emphasis = (typeof EmphasisOptions)[number]; export {};