/**
 *
 * @export
 * @interface PaymentContractType
 */
export interface PaymentContractType {
    /**
     * The localized name of the object.
     * @type {{ [key: string]: string; }}
     * @memberof PaymentContractType
     */
    readonly name?: {
        [key: string]: string;
    };
    /**
     * The localized description of the object.
     * @type {{ [key: string]: string; }}
     * @memberof PaymentContractType
     */
    readonly description?: {
        [key: string]: string;
    };
    /**
     * A unique identifier for the object.
     * @type {number}
     * @memberof PaymentContractType
     */
    readonly id?: number;
}
/**
 * Check if a given object implements the PaymentContractType interface.
 */
export declare function instanceOfPaymentContractType(value: object): value is PaymentContractType;
export declare function PaymentContractTypeFromJSON(json: any): PaymentContractType;
export declare function PaymentContractTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentContractType;
export declare function PaymentContractTypeToJSON(json: any): PaymentContractType;
export declare function PaymentContractTypeToJSONTyped(value?: Omit<PaymentContractType, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;
