import type { ReactNode } from 'react'; import type { Styles } from '@cleartrip/ct-design-types'; export type BoxSize = 'xLarge' | 'big' | 'medium' | 'small' | 'tiny' | 'micro' | 'nano' | 'pico' | 'zero'; export interface IBoxStyleConfig { root?: Styles[]; } export interface IBoxProps { children?: ReactNode; styleConfig?: IBoxStyleConfig; onClick?: () => void; horizontal?: boolean; boxSize: BoxSize; } export type BoxProps> = IBoxProps & T; //# sourceMappingURL=type.d.ts.map