export declare class AmountNonZeroDecimalsRequirement {
    /**
    * Specifies for which routes the amount in a transfer request must have no non-zero decimal places, so the transfer can only be processed if the amount consists of round numbers.
    */
    "description"?: string;
    /**
    * **amountNonZeroDecimalsRequirement**
    */
    "type": AmountNonZeroDecimalsRequirement.TypeEnum;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace AmountNonZeroDecimalsRequirement {
    enum TypeEnum {
        AmountNonZeroDecimalsRequirement = "amountNonZeroDecimalsRequirement"
    }
}
