import { IsoDate, IsoDateTime, IsoDuration, IsoInstant, IsoMonthDay, IsoTime, IsoYearMonth } from '../iso-types'; interface IsoSplitterInput { Instant?(input: IsoInstant): any; DateTime?(dateTime: IsoDateTime): any; Date?(date: IsoDate): any; Time?(time: IsoTime): any; YearMonth?(yearMonth: IsoYearMonth): any; MonthDay?(monthDay: IsoMonthDay): any; Duration?(duration: IsoDuration): any; } export declare function IsoSplitter(input: any, splitter: IsoSplitterInput): any; export {};