import { Request } from '../Request';
import { IRestResponse } from 'typed-rest-client/RestClient';
import { Authenticators } from './Authenticators';
/** @deprecated This endpoint is not in the OpenAPI spec and will be removed in a future release. */
export declare class GetAuthenticatorRequest implements Request<Authenticators> {
    constructor();
    execute(apiToken: string): Promise<IRestResponse<Authenticators>>;
}
