export declare class JobType { field: string; salery: number; } export declare class Job { title?: string; position?: string; startedAt?: Date; jobType?: JobType; }