import Configuration from './Configuration';
import { RestClient } from './RestClient';
/**
 *
 * @export
 * @class BaseAPI
 */
export declare class BaseAPI {
    protected restClient: RestClient;
    constructor(configuration: Configuration);
}
/**
 *
 * @export
 * @class RequiredError
 * @extends {Error}
 */
export declare class RequiredError extends Error {
    field: string;
    name: 'RequiredError';
    constructor(field: string, msg?: string);
}
