import { BaseStyle } from "./BaseStyle"; /** * CallLogParticipantsStyle class represents the styles for users. It extends BaseStyle. * * @property {string} headingFont - Font of the heading. * @property {string} headingColor - Color of the heading. * @property {string} backIconTint - Tint of the back icon. * @property {string} callStatusFont - Font of the call status text. * @property {string} callStatusColor - Color of the call status text. * @property {string} dateTextFont - Font of the date text. * @property {string} dateTextColor - Color of the date text. */ export declare class CallLogParticipantsStyle extends BaseStyle { titleFont?: string; titleColor?: string; backIconTint?: string; callStatusFont?: string; callStatusColor?: string; dateTextFont?: string; dateTextColor?: string; constructor(style: Partial); } //# sourceMappingURL=CallLogParticipantsStyle.d.ts.map