import { OverallRecommendationEnum } from './overallRecommendationEnum'; import { RemoteData } from './remoteData'; export declare class Scorecard { 'id'?: string; 'remote_id'?: string | null; 'application'?: string | null; 'interview'?: string | null; 'interviewer'?: string | null; 'remote_created_at'?: Date | null; 'submitted_at'?: Date | null; 'overall_recommendation'?: OverallRecommendationEnum | null; 'remote_data'?: Array | null; 'remote_was_deleted'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }