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 { GetV1CompaniesCompanyUuidTaxRequirementsStateRequest, GetV1CompaniesCompanyUuidTaxRequirementsStateResponse } from "../models/operations/getv1companiescompanyuuidtaxrequirementsstate.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get tax requirements for a state * * @remarks * Retrieves the detailed tax requirements for a specific state. The response includes requirement sets grouped by * category (e.g., registrations, tax rates, deposit schedules), each containing individual requirements with their * current values, labels, and metadata describing the expected input format. * * Use this to build dynamic UIs for tax setup or to read the current tax configuration for a state. * * scope: `company_tax_requirements:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function taxRequirementsGet(client: GustoEmbeddedCore, request: GetV1CompaniesCompanyUuidTaxRequirementsStateRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=taxRequirementsGet.d.ts.map