import type { OrganizationCreate } from '../lib/api/vauth-be-v2/models/OrganizationCreate.js'; import type { OrganizationRead } from '../lib/api/vauth-be-v2/models/OrganizationRead.js'; import type { ListVmOrganizationRead } from '../lib/api/vauth-be-v2/models/ListVmOrganizationRead.js'; export type { OrganizationCreate, OrganizationRead, ListVmOrganizationRead }; export type Settings = object; export declare const useOrganizationApi: () => { getOrgs: (accessToken?: string, cookie?: string | null) => Promise; getOrg: (org_id: string, accessToken?: string, cookie?: string | null) => Promise; createOrg: (body: OrganizationCreate, accessToken?: string, cookie?: string | null) => Promise; };