/** * A component to display a dynamic year, updating based on an effective date. * @part base - The container displayed for the year. */ export declare class DxpYear { /** The month when the year should increment (1-12) */ effectiveMonth: number; /** The day of the month when the year should increment (1-31) */ effectiveDay: number; /** The number of years to increment (default is 0) */ incrementYear: number; displayedYear: number; componentWillLoad(): void; updateYear(): void; render(): any; }