import { AbstractAccountUpdate } from "./AbstractAccountUpdate";
declare class AccountCreate extends AbstractAccountUpdate {
    /**
    * The parent account responsible for administering this account.
    */
    'parentAccount'?: number;
    /**
    * The scope that the account belongs to.
    */
    'scope': number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { AccountCreate };
