export declare const componentSizes: readonly ["default", "small", "large"]; export type ComponentSize = typeof componentSizes[number]; export declare const SizeProp: { type: PropType<"default" | "small" | "large">; };