export declare type Options = { timeout?: number; limit?: number; interval?: number; bucketSize?: number; }; export declare type RequestOptions = { method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'; headers?: any; body?: any; }; export default class CalendlyApiEndpoint { protected ACCESS_TOKEN: string; private options; constructor(ACCESS_TOKEN: string, params?: Options); protected fetchGet(url: string): Promise; protected fetchPost(url: string, body: string): Promise; protected request(uri: string, options: RequestOptions): Promise; } //# sourceMappingURL=CalendlyApiEndpoint.d.ts.map