/** * useWorkspace Hook * Workspace management (Shield service) */ import type { UseWorkspaceOptions, Workspace } from './types'; export declare const useWorkspace: ({ onError }?: UseWorkspaceOptions) => { workspace: Workspace; workspaces: Workspace[]; isLoading: boolean; error: Error; getWorkspace: (id: string) => Promise; listWorkspaces: (organizationId?: string) => Promise; }; export type { UseWorkspaceOptions } from './types'; //# sourceMappingURL=useWorkspace.d.ts.map