import type * as Options from "@/options/company";
export declare class Company {
    readonly name: string;
    readonly jurisdiction: string;
    readonly terms: string;
    readonly privacy: string;
    readonly template: string;
    constructor(company: Options.Company);
    get agreement(): string;
}
