/** * useOrganization Hook * Organization management (Shield service) */ import type { Organization, UseOrganizationOptions } from './types'; export declare const useOrganization: ({ onError }?: UseOrganizationOptions) => { organization: Organization; organizations: Organization[]; isLoading: boolean; error: Error; getOrganization: (id: string) => Promise; listOrganizations: () => Promise; }; export type { UseOrganizationOptions } from './types'; //# sourceMappingURL=useOrganization.d.ts.map