/** * BaseStyle * * @property {string} height - The height of the component. * @property {string} width - The width of the component. * @property {string} border - The border of the component. * @property {string} borderRadius - The border radius of the component. * @property {string} background - The background color of the component. */ export declare class BaseStyle { height?: string; width?: string; border?: string; borderRadius?: string; background?: string; constructor(props: Partial); } //# sourceMappingURL=BaseStyle.d.ts.map