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 { GetV1CompaniesCompanyIdPayrollsRequest, GetV1CompaniesCompanyIdPayrollsResponse } from "../models/operations/getv1companiescompanyidpayrolls.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get all payrolls for a company * * @remarks * Returns a list of payrolls for a company. You can change the payrolls returned by updating the processing_status, payroll_types, start_date, & end_date params. * * By default, will return processed, regular payrolls for the past 6 months. * * Notes: * * Dollar amounts are returned as string representations of numeric decimals, are represented to the cent. * * end_date can be at most 3 months in the future and start_date and end_date can't be more than 1 year apart. * * Results are paginated. Maximum page size is 100 payrolls per request; the default page size is 25. * * scope: `payrolls:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function payrollsList(client: GustoEmbeddedCore, request: GetV1CompaniesCompanyIdPayrollsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=payrollsList.d.ts.map