import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { QcStatementsParsedStatements } from "./qcstatementsparsedstatements.js"; export type QcStatements = { ids?: Array | null | undefined; parsed?: QcStatementsParsedStatements | undefined; }; /** @internal */ export declare const QcStatements$inboundSchema: z.ZodType; export declare function qcStatementsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=qcstatements.d.ts.map