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