import { calendar } from './calendar'; /** * Generates the Previous, Title, and Next header elements. */ export declare function generateHeader(context: calendar): void; /** * Generates the date field and today button. */ export declare function generateInputs(context: calendar): void; /** * Generates errors pushed to the errors array. */ export declare function generateErrors(context: calendar): void; /** * Generates the day buttons for the calendar grid. */ export declare function generateDays(context: calendar, focusFirstorLastDay?: false | 'first' | 'last'): void;