import { BaseTestConfig } from '../../tests/test-framework';
export interface CalendarTestConfig extends BaseTestConfig {
    withcontrols?: boolean;
    weeknumbers?: boolean;
    multiple?: boolean;
    range?: boolean;
    earliest?: string;
    latest?: string;
    currentmonth?: string;
    excludedates?: string;
    excludeweekdays?: string;
}
export declare const createCalendarTest: (config?: CalendarTestConfig) => Promise<{
    container: HTMLElement;
    calendar: import('./calendar').PktCalendar;
}>;
