import { BaseStyle } from '../BaseStyle'; /** * DateStyle class defines the style properties for date. * * @property {string} textFont - The font style for the text. * @property {string} textColor - The text color for the text. * * @extends {BaseStyle} */ export declare class DateStyle extends BaseStyle { textFont?: string; textColor?: string; padding?: string; display?: string; constructor(props: Partial); } //# sourceMappingURL=DateStyle.d.ts.map