import { type User as UserType } from '../Foundry/types'; interface UserSelectionProps { users: UserType[]; onUserSelect: (user: UserType) => void; onCancel: () => void; selectedUserId?: string; } export declare function UserSelection({ users, onUserSelect, onCancel, selectedUserId, }: UserSelectionProps): import("react/jsx-runtime").JSX.Element; export {};