export declare type account = {
    /**
     * Account ID
     */
    id?: number;
    /**
     * Name of the account
     */
    name?: string;
    /**
     * The user role in the account
     */
    role?: "administrator" | "agent";
};
