import { FC } from 'react'; import { ShareRole } from './types'; export interface PermissionSelectProps { value: ShareRole; /** Subset of canonical roles to offer (order preserved). */ roles: ShareRole[]; onChange: (role: ShareRole) => void; disabled?: boolean; className?: string; /** Test id applied to the trigger (defaults to `share-permission-select`). */ testId?: string; } /** * Role selector built on the shared `Select` primitive. Each option shows the * role label plus a one-line description so the grantee's effective access is * obvious without leaving the dialog. */ export declare const PermissionSelect: FC; //# sourceMappingURL=PermissionSelect.d.ts.map