import { MockOptions } from '../types/MockOptions'; /** * Mocks the access token endpoint (to request a token). * * @param options * @returns {Scope} */ export declare function mockAccessTokenEndpoint(options: MockOptions): void; /** * Mocks the tokeninfo endpoint (to validate a token). * * @param options * @returns {Scope} */ export declare function mockTokeninfoEndpoint(options: MockOptions): void; /** * Removes generated tokens and mocked endpoints. */ export declare function cleanMock(): void;