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 { GetV1CompaniesCompanyIdLocationsRequest, GetV1CompaniesCompanyIdLocationsResponse } from "../models/operations/getv1companiescompanyidlocations.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get all company locations * * @remarks * Retrieves all company locations (addresses) associated with a company: mailing addresses, filing * addresses, or work locations. A single address may serve multiple, or all, purposes. * * Since all company locations are subsets of locations, use the Locations endpoints to * [get](ref:get-v1-locations-location_id) or [update](ref:put-v1-locations-location_id) an individual record. * * scope: `companies:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function locationsGet(client: GustoEmbeddedCore, request: GetV1CompaniesCompanyIdLocationsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=locationsGet.d.ts.map