import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EmployeeStateTaxAnswer } from "./employeestatetaxanswer.js"; import { EmployeeStateTaxInputQuestionFormat } from "./employeestatetaxinputquestionformat.js"; export type EmployeeStateTaxQuestion = { /** * A short title for the question */ label: string; /** * An explaination of the question - this may contain inline html formatted links. */ description: string | null; /** * A unique identifier of the question (for the given state) - used for updating the answer. */ key: string; isQuestionForAdminOnly: boolean; inputQuestionFormat: EmployeeStateTaxInputQuestionFormat; answers: Array; }; /** @internal */ export declare const EmployeeStateTaxQuestion$inboundSchema: z.ZodType; export declare function employeeStateTaxQuestionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeestatetaxquestion.d.ts.map