import { Prediction, StringDict } from "../../../parsing/common";
import { StringField } from "../../../parsing/standard";
/**
 * Bank Account Details API version 1.0 document data.
 */
export declare class BankAccountDetailsV1Document implements Prediction {
    /** The name of the account holder as seen on the document. */
    accountHolderName: StringField;
    /** The International Bank Account Number (IBAN). */
    iban: StringField;
    /** The bank's SWIFT Business Identifier Code (BIC). */
    swift: StringField;
    constructor(rawPrediction: StringDict, pageId?: number);
    /**
     * Default string representation.
     */
    toString(): string;
}
