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;
