export declare const operations: { readonly get_categories: { readonly path: "/categories"; readonly method: "get"; }; readonly get_countries: { readonly path: "/countries"; readonly method: "get"; }; readonly get_projects: { readonly path: "/projects"; readonly method: "get"; }; readonly "get_users-walletorhandle": { readonly path: "/users/:walletOrHandle"; readonly method: "get"; }; readonly post_users: { readonly path: "/users"; readonly method: "post"; }; readonly "put_users-wallet": { readonly path: "/users/:wallet"; readonly method: "put"; }; readonly get_vintages: { readonly path: "/vintages"; readonly method: "get"; }; readonly "get_projects-id": { readonly path: "/projects/:id"; readonly method: "get"; }; readonly "get_purchases-id": { readonly path: "/purchases/:id"; readonly method: "get"; }; readonly "post_users-login": { readonly path: "/users/login"; readonly method: "post"; }; readonly "post_users-login-verify": { readonly path: "/users/login/verify"; readonly method: "post"; }; };