import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { ScreeningQuestionJob } from "./ScreeningQuestionJob"; import { ScreeningQuestionOptionsItem } from "./ScreeningQuestionOptionsItem"; import { ScreeningQuestionType } from "./ScreeningQuestionType"; export declare const ScreeningQuestion: core.serialization.ObjectSchema; export declare namespace ScreeningQuestion { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; job?: ScreeningQuestionJob.Raw | null; description?: string | null; title?: string | null; type?: ScreeningQuestionType.Raw | null; required?: boolean | null; options?: ScreeningQuestionOptionsItem.Raw[] | null; remote_was_deleted?: boolean | null; } }