import { Workspace } from "../../interfaces/models/Workspace"; export interface UpdateWorkspaceInheritFlagProps { workspaceId: string; inheritsFromParent: boolean; } /** * Flip whether this workspace inherits reach from its parent. Owner-only — the * actor (the bearer-token user) must be the workspace's own owner or an * ancestor owner. */ declare function useUpdateWorkspaceInheritFlag(): (props: UpdateWorkspaceInheritFlagProps) => Promise; export default useUpdateWorkspaceInheritFlag;