import { FC } from 'react'; import { ShareController } from './types'; export interface SharedWithListProps { controller: ShareController; /** Workspace scope for resolving grantee identities. */ workspaceId?: string; authToken?: string; apiGatewayUrl?: string; className?: string; } /** * Renders the current grants (user rows) and public links for a shared * resource. User rows show identity + status, an inline {@link PermissionSelect} * (when the controller supports `updateRole`) and a revoke action. Link rows * surface a copy-link button, expiry, and revoke. */ export declare const SharedWithList: FC; //# sourceMappingURL=SharedWithList.d.ts.map