import { EmploymentRecord } from './employment-record.model'; import { EmploymentDeclarationServices } from '../../../constants/employment-declaration-services'; export declare class SaveEdDetailsPayload { employmentDeclarationId: number; cmsCaseId: number; employmentDetails: EmploymentRecord[]; isVendorAcknowledge: boolean; isClientAcknowledge: boolean; isSubmit: boolean; service: EmploymentDeclarationServices; path: string; loadPath: string; constructor(data: unknown); }