import { Account } from "./Account";
import { Session } from "../Session";
import { familyAccount } from "ecoledirecte-api-types/v3";
export declare class Family extends Account {
    private session;
    type: "family";
    private account;
    constructor(session: Session);
    get _raw(): familyAccount;
}
