import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { SelectOption } from "./SelectOption"; export declare const SelectOptions: core.serialization.ObjectSchema; export declare namespace SelectOptions { interface Raw { title: string; body: string; options: SelectOption.Raw[]; selected_option?: SelectOption.Raw | null; } }