declare namespace _default {
    export namespace create {
        namespace url {
            const path: string;
            const method: string;
        }
    }
    export namespace update {
        export namespace url_1 {
            const path_1: string;
            export { path_1 as path };
            const method_1: string;
            export { method_1 as method };
        }
        export { url_1 as url };
    }
    export namespace _delete {
        export namespace url_2 {
            const path_2: string;
            export { path_2 as path };
            const method_2: string;
            export { method_2 as method };
        }
        export { url_2 as url };
    }
    export { _delete as delete };
    export namespace addList {
        export namespace url_3 {
            const path_3: string;
            export { path_3 as path };
            const method_3: string;
            export { method_3 as method };
        }
        export { url_3 as url };
    }
}
export default _default;
