infinity-forge
Version:
16 lines (15 loc) • 460 B
TypeScript
import { IRole } from '../../../../ui/index.js';
export interface IEvaluationsProps {
theme?: {
baseColor: string;
};
sourceTable: 'Directory' | 'Order' | 'Forum';
entityKey: string;
sourceGUID: string;
directoryId?: number;
configurations?: {
enablePhoneOnSend?: boolean;
};
roles: Partial<IRole>[];
}
export declare function Interactions(props: IEvaluationsProps): import("react/jsx-runtime").JSX.Element;