import { componentStatuses, componentColors, componentPositions, componentSizes, componentShapes, bgColors, brandColors } from './constants'; import { DEFAULT_THEMES } from './defaultThemes'; export declare type DataTheme = typeof DEFAULT_THEMES[number] | string; export interface IComponentBaseProps { dataTheme?: DataTheme; } export declare type ComponentColor = typeof componentColors[number]; export declare type ComponentPosition = typeof componentPositions[number]; export declare type ComponentShape = typeof componentShapes[number]; export declare type ComponentSize = typeof componentSizes[number]; export declare type ComponentStatus = typeof componentStatuses[number]; export declare type ComponentBrandColors = typeof brandColors[number]; export declare type ComponentBgColors = typeof bgColors[number];