import { RestClient, ApiConfig, AuthenticationClient } from '@ministryofjustice/hmpps-rest-client';
import type Logger from 'bunyan';
import Prisoner from './interfaces/Prisoner';
export default class PrisonerSearchClient extends RestClient {
    constructor(logger: Logger | Console, config: ApiConfig, authenticationClient: AuthenticationClient);
    getPrisonerDetails(prisonerNumber: string): Promise<Prisoner>;
}
