import { BaseStyle } from "./BaseStyle"; /** * NewMessageIndicatorStyle class represents the styles for new message indicator. It extends BaseStyle. * * @property {string} height - Height for new message indicator. * @property {string} width - Width for new message indicator. * @property {string} border - Border for new message indicator. * @property {string} borderRadius - Border radius for new message indicator. * @property {string} background - Background for new message indicator. * @property {string} textFont - Text font for new message indicator. * @property {string} textColor - Text color for new message indicator. * @property {string} iconTint - Icon tint for new message indicator. * @property {string} iconHeight - Icon height for new message indicator. * @property {string} iconWidth - Icon width for new message indicator. * @extends {BaseStyle} */ export declare class NewMessageIndicatorStyle extends BaseStyle { height?: string; width?: string; border?: string; borderRadius?: string; background?: string; textFont?: string; textColor?: string; iconTint?: string; iconHeight?: string; iconWidth?: string; constructor(props: Partial); } //# sourceMappingURL=NewMessageIndicatorStyle.d.ts.map