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