import { Account, PublicAccount } from 'nem2-sdk';
import { IReadyTransaction } from '../../infrastructure/ApostilleHttp';
import { ApostillePublicAccount } from './ApostillePublicAccount';
export declare class Apostille extends ApostillePublicAccount {
    readonly HDAccount: Account;
    static initFromSeed(seed: string, generatorAccount: Account): Apostille;
    constructor(HDAccount: Account);
    associate(owners: PublicAccount[], quorumDelta: number, minRemovalDelta: number): IReadyTransaction;
    private readonly initiator;
}
