import * as finance from "../finance/index.js";
import { type TContact } from "./contact.js";
export declare class IJob {
    type: "contract" | "employment";
    techTags?: string[];
    qualificationTags?: string[];
    languages?: {
        name: string;
        level: "basic" | "intermediate" | "advanced" | "native";
    }[];
    name: string;
    description: string;
    monthlyTotal: number;
    currency: finance.TCurrency;
    from: TContact;
    contact: TContact;
}
