import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CollectedData } from "./CollectedData"; import { DataCollectionOptionsInputType } from "./DataCollectionOptionsInputType"; export declare const DataCollectionOptions: core.serialization.ObjectSchema; export declare namespace DataCollectionOptions { interface Raw { title: string; body: string; input_type: DataCollectionOptionsInputType.Raw; collected_data?: CollectedData.Raw | null; } }