import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { NotFoundErrorObject } from "../models/errors/notfounderrorobject.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { GetV1EmployeesRequest, GetV1EmployeesResponse } from "../models/operations/getv1employees.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get an employee * * @remarks * Get an employee. * * Note: Compensation data (pay rate, payment unit, and related fields) represents sensitive employee pay information. When retrieving employee job data, these fields (`rate`, `payment_unit`, `current_compensation_uuid`, `compensations`) are only returned when the `compensations:read` scope is included. This allows you to access employee and job metadata without exposing pay rates. * * scope: `employees:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function employeesGet(client: GustoEmbeddedCore, request: GetV1EmployeesRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=employeesGet.d.ts.map