import { BaseStyle } from './BaseStyle'; /** * OutgoingCallStyle class represents the styles for users. It extends BaseStyle. * * @property {string} subtitleTextFont - Font for subTitle text. * @property {string} subtitleTextColor - Color for subTitle text. * @property {string} titleTextFont - Font for title text. * @property {string} titleTextColor - Color for title text. */ export declare class OutgoingCallStyle extends BaseStyle { titleTextFont?: string; titleTextColor?: string; subtitleTextFont?: string; subtitleTextColor?: string; declineButtonTextFont?: string; declineButtonTextColor?: string; declineButtonIconTint?: string; declineButtonIconBackground?: string; constructor(props: Partial); } //# sourceMappingURL=OutgoingCallStyle.d.ts.map