export declare function ParseMap(tokens: string[]): {
    type: string;
    map: {
        from: string;
        to: string;
    };
    name: string;
};
