import type { GetStaffMember } from './types/index.js'; /** * Method responsible for getting the staff member given its identifier. * * @param id - Staff member identifier. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will be resolved when the call to the endpoint finishes. */ declare const getStaffMember: GetStaffMember; export default getStaffMember;