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