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