import { Postition } from '../types';
export declare const createMultiLineString: (coordinates: Postition[][]) => {
    type: "MultiLineString";
    coordinates: Postition[][];
};
