import { components } from '../lib/api/v1.js'; export interface UsageLimits { mau: number; tenants: number; billing_tier: string; } export type OrganizationCreate = components['schemas']['OrganizationCreate']; export type OrganizationReadWithAPIKey = components['schemas']['OrganizationReadWithAPIKey']; export type Settings = object; export declare const useOrganisationApi: () => { getOrgs: (accessToken?: string, cookie?: string | null) => Promise | undefined, "application/json">, "error"> & { error: string | null; }>; getOrg: (org_id: string, accessToken?: string, cookie?: string | null) => Promise, "application/json">, "error"> & { error: string | null; }>; createOrg: (body: OrganizationCreate, accessToken?: string, cookie?: string | null) => Promise, "application/json">, "error"> & { error: string | null; }>; };