import type { FrameSelectionMethod } from './frame-selection-method';
import type { ValidationMode } from './validation-mode';
export interface ValidationParamsRequest {
    'mode': ValidationMode;
    'frame_selection_method': FrameSelectionMethod;
    'random_seed'?: number;
    'frames'?: Array<string>;
    'frame_count'?: number;
    'frame_share'?: number;
    'frames_per_job_count'?: number;
    'frames_per_job_share'?: number;
}
