export type Dimension = string | number | Array | Array; export type ColorProp = 'primary' | 'secondary' | 'info' | 'success' | 'danger' | 'warining' | 'black' | 'white'; export type SizeProp = 'xxxs' | 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl' | number; export type FontProp = { value: string; }; export interface AnimationProps { animation: any; animationName: string; animationDuration: any; animationDelay: any; animate: boolean; } export interface CommonProps { margins?: Dimension; paddings?: Dimension; borderRadiuses?: Dimension; textAlign?: 'left' | 'right' | 'center' | 'justify'; minHeight?: number | string; hovered?: boolean; focused?: boolean; className?: string; name?: string; model?: string; dataModel?: string; configModel?: string; } //# sourceMappingURL=types.d.ts.map