/// <reference types="react" />
import { DecadeLevelSettings } from '../DecadeLevel';
import { PickerBaseProps, DatePickerType } from '../../types';
import { CalendarBaseProps, CalendarSystemProps } from '../Calendar';
export interface YearPickerBaseProps<Type extends DatePickerType = 'default'> extends PickerBaseProps<Type>, DecadeLevelSettings, CalendarBaseProps {
}
export interface YearPickerProps<Type extends DatePickerType = 'default'> extends YearPickerBaseProps<Type>, CalendarSystemProps {
}
declare type YearPickerComponent = (<Type extends DatePickerType = 'default'>(props: YearPickerProps<Type>) => JSX.Element) & {
    displayName?: string;
};
export declare const YearPicker: YearPickerComponent;
export {};
//# sourceMappingURL=YearPicker.d.ts.map