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 { PostV1EmployeesEmployeeIdSalaryEstimatesRequest, PostV1EmployeesEmployeeIdSalaryEstimatesResponse } from "../models/operations/postv1employeesemployeeidsalaryestimates.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Create a salary estimate for an employee * * @remarks * Create a salary estimate for an employee. This endpoint helps calculate a reasonable salary for S Corp owners based on their occupation, experience level, location, and business revenue. * * A salary estimate must include: * - Annual net revenue of the business * - ZIP code for location-based salary data * - One or more occupations with experience levels and time percentages (must sum to 100%) * * Only one in-progress salary estimate can exist per employee at a time. If an in-progress estimate already exists, you must either accept it or use the update endpoint. * * scope: `salary_estimates:write` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function salaryEstimatesPostV1EmployeesEmployeeIdSalaryEstimates(client: GustoEmbeddedCore, request: PostV1EmployeesEmployeeIdSalaryEstimatesRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=salaryEstimatesPostV1EmployeesEmployeeIdSalaryEstimates.d.ts.map