import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IConvertSource {
    date?: ICharacter | string;
    time?: ICharacter | string;
    stamp?: ICharacter | INumeric | string;
    utclong?: ICharacter | string;
    zone: ICharacter | string;
}
export interface IConvertTarget {
    stamp?: ICharacter;
    date?: ICharacter;
    time?: ICharacter;
    utclong?: ICharacter;
}
export declare function convert(source: IConvertSource, target: IConvertTarget): void;
