import { DateTimePickerConfiguration } from './configuration'; import { SelectionScope } from './scope/scope-interface'; export interface DateTimePickerConfiguration { format?: string; locale?: any; weekStartsOn?: 0 | 1; scopes?: SelectionScope[]; initialScope?: SelectionScope; } export declare const DEFAULT_CONFIGURATION: DateTimePickerConfiguration;