import { components } from '../lib/api/v1.js'; export type CreateTenantBody = components['schemas']['TenantCreate']; export type CreateUserBody = components['schemas']['UserCreate']; export declare const useTenantApi: () => { createTenant: (body: CreateTenantBody) => Promise, "application/json">, "error"> & { error: string | null; }>; };