import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { QcStatementsMonetaryValue } from "./qcstatementsmonetaryvalue.js"; import { QcStatementsPdsLocation } from "./qcstatementspdslocation.js"; import { QCStatementsQCLegislation } from "./qcstatementsqclegislation.js"; import { QcStatementsQcType } from "./qcstatementsqctype.js"; export type QcStatementsParsedStatements = { etsiCompliance?: Array | null | undefined; legislation?: Array | null | undefined; limit?: Array | null | undefined; pdsLocations?: Array | null | undefined; retentionPeriod?: Array | null | undefined; sscd?: Array | null | undefined; types?: Array | null | undefined; }; /** @internal */ export declare const QcStatementsParsedStatements$inboundSchema: z.ZodType; export declare function qcStatementsParsedStatementsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=qcstatementsparsedstatements.d.ts.map