import { VCLDateAdapterParseFormats, VCLDateAdapterDisplayFormats } from '../interfaces'; import { VCLNativeDateAdapterParser } from './types'; export declare class NativeDateAdapterParserDE implements VCLNativeDateAdapterParser { supportedLocales: string[]; parse(value: string, format: VCLDateAdapterParseFormats): Date; format(date: Date, format: VCLDateAdapterDisplayFormats): string; }