export declare class LeafletDrawUtil {
    /**
     * Deep copy the source object into the dest object. Will only copy literal values.
     * @param dest
     * @param src
     */
    static deepLiteralCopy<T>(dest: T, src: any): T;
}
