import { ClientHandle } from './ClientHandle.js'; /** * easyPDF Cloud client configuration */ export declare class ClientConfig { /** * @property {ClientHandle} handle Client handle */ readonly handle: ClientHandle; /** * Creates an instance * @param {string} clientId Client ID * @param {string} clientSecret Client secret */ constructor(clientId: string, clientSecret: string); }