import { IResumeTotal } from '../interfaces';
import { ResumeYearEntity } from './resume-year.entity';
export declare class ResumeTotalEntity implements IResumeTotal {
    average: number;
    collectionName: string;
    count: number;
    total: number;
    years: ResumeYearEntity[];
    constructor(data?: Partial<ResumeTotalEntity>);
}
