import { BaseStyle } from './BaseStyle'; /** * CallHistoryStyle 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. * @property {string} emptyStateTextFont - Font for empty state text. * @property {string} emptyStateTextColor - Color for empty state text. * @property {string} errorStateTextFont - Font for error state text. * @property {string} errorStateTextColor - Color for error state text. * @property {string} loadingIconTint - Tint color for loading icon. * @property {string} boxShadow - Shadow for the box. */ export declare class CallHistoryStyle extends BaseStyle { titleTextFont?: string; titleTextColor?: string; emptyStateTextFont?: string; emptyStateTextColor?: string; errorStateTextFont?: string; errorStateTextColor?: string; loadingIconTint?: string; separatorColor?: string; boxShadow?: string; subtitleTextFont?: string; subtitleTextColor?: string; constructor(props: Partial); } //# sourceMappingURL=CallHistoryStyle.d.ts.map