import { SettingType } from "./settingType";
import { Target } from "./target";
export declare class WebhookSetting {
    /**
    * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance.
    */
    "currency": string;
    /**
    * The unique identifier of the webhook setting.
    */
    "id": string;
    "status": string;
    "target": Target;
    "type": SettingType;
    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 WebhookSetting {
}
