/** * CallscreenStyle class represents the styles for users. It extends BaseStyle. * * @property {string} maxHeight - maximum height of the component. * @property {string} maxWidth - maximum width of the component. * @property {string} minHeight - minimum height of the component. * @property {string} minWidth - minimum height of the component. * @property {string} headerBackground - background color of header. * @property {string} minimizeIconTint - minimize icon color. * @property {string} maximizeIconTint - maximize icon color. * @property {string} border - border color of component. * @property {string} borderRadius - borderRadius of component * @property {string} background - background color of component. */ export declare class CallscreenStyle { maxHeight?: string; maxWidth?: string; minHeight?: string; minWidth?: string; minimizeIconTint?: string; maximizeIconTint?: string; border?: string; borderRadius?: string; background?: string; constructor(props: Partial); } //# sourceMappingURL=CallscreenStyle.d.ts.map