export declare type EvaluationRoundLimitType = 'TOTAL' | 'DAILY' | 'WEEKLY' | 'MONTHLY';
export declare type EvaluationRoundLimit = {
    limitType: EvaluationRoundLimitType;
    maximumSubmissions: number;
};
