/**
 * The debt collector connects to an external service to process debt collection cases and directs the debt collection process.
 * @export
 * @interface DebtCollector
 */
export interface DebtCollector {
    /**
     * The localized name of the object.
     * @type {{ [key: string]: string; }}
     * @memberof DebtCollector
     */
    readonly name?: {
        [key: string]: string;
    };
    /**
     * The localized description of the object.
     * @type {{ [key: string]: string; }}
     * @memberof DebtCollector
     */
    readonly description?: {
        [key: string]: string;
    };
    /**
     * A unique identifier for the object.
     * @type {number}
     * @memberof DebtCollector
     */
    readonly id?: number;
}
/**
 * Check if a given object implements the DebtCollector interface.
 */
export declare function instanceOfDebtCollector(value: object): value is DebtCollector;
export declare function DebtCollectorFromJSON(json: any): DebtCollector;
export declare function DebtCollectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): DebtCollector;
export declare function DebtCollectorToJSON(json: any): DebtCollector;
export declare function DebtCollectorToJSONTyped(value?: Omit<DebtCollector, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;
