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 { UnprocessableEntityError } from "../models/errors/unprocessableentityerror.js"; import { PostV1SalaryEstimatesUuidAcceptRequest, PostV1SalaryEstimatesUuidAcceptResponse } from "../models/operations/postv1salaryestimatesuuidaccept.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Accept a salary estimate * * @remarks * Accept and finalize a salary estimate. This associates the estimate with an employee job and marks it as accepted. * * Once accepted, the salary estimate becomes read-only for record-keeping purposes. The accepted salary can then be used to set up compensation for the employee. * * scope: `salary_estimates:write` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function salaryEstimatesPostV1SalaryEstimatesUuidAccept(client: GustoEmbeddedCore, request: PostV1SalaryEstimatesUuidAcceptRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=salaryEstimatesPostV1SalaryEstimatesUuidAccept.d.ts.map