import { DatePickerLabel } from "./date-picker.interface"; export declare function BZ_DATEPICKER_CONFIG_FACTORY(): BzDatepickerConfigDefault; /** * A service supplying datepicker component configuration. * * @author Federico Gambardella * */ export declare abstract class BzDatepickerConfig { /** * Get label of date picker that it not possibile * to translate by locale. * * @author Federico Gambardella */ abstract getDatePickerLabel(): DatePickerLabel; /** * Get date picker validation function. * * @author Federico Gambardella */ abstract getDatePickerValidFn: Function; } /** * A service providing default implementation for the datepicker configuration. * It can be used as a base implementation if necessary. * * @author Federico Gambardella */ export declare class BzDatepickerConfigDefault extends BzDatepickerConfig { getDatePickerValidFn: Function; getDatePickerLabel(): DatePickerLabel; }