import { EvaluationRound, EvaluationRoundLimitType } from '@sage-bionetworks/synapse-types';
export type EvaluationRoundLimitInput = {
    readonly type: EvaluationRoundLimitType;
    readonly maxSubmissionString: string;
};
export type EvaluationRoundInput = {
    evaluationId: string;
    reactListKey: string;
    id?: string;
    etag?: string;
    roundStart: string;
    roundEnd: string;
    totalSubmissionLimit: string;
    otherLimits: EvaluationRoundLimitInput[];
};
export declare const convertEvaluationRoundToInput: (evaluationRound: EvaluationRound, reactListKey?: string) => EvaluationRoundInput;
//# sourceMappingURL=models.d.ts.map