import { TemplateRef } from '@angular/core'; import { DayTemplateContext } from './datepicker-day-template-context'; import { FishDateStruct } from './fish-date-struct'; /** * Configuration service for the FishDatepicker component. * You can inject this service, typically in your root component, and customize the values of its properties in * order to provide default values for all the datepickers used in the application. */ export declare class FishDatepickerConfig { dayTemplate: TemplateRef; displayMonths: number; firstDayOfWeek: number; markDisabled: (date: FishDateStruct, current: { year: number; month: number; }) => boolean; minDate: FishDateStruct; maxDate: FishDateStruct; navigation: 'select' | 'arrows' | 'none'; outsideDays: 'visible' | 'collapsed' | 'hidden'; showWeekdays: boolean; showWeekNumbers: boolean; startDate: { year: number; month: number; }; }