/** Dependencies */ import { Collection, NodeBlock } from "@tripetto/builder"; import { Choice } from "./choice"; export declare class PictureChoice extends NodeBlock { caption?: string; imageURL?: string; imageWidth?: string; imageAboveText?: boolean; readonly choices: Collection.Provider; multiple?: boolean; min?: number; max?: number; required?: boolean; alias?: string; exportable?: boolean; labelForTrue?: string; labelForFalse?: string; randomize?: boolean; size?: "small" | "medium" | "large"; format?: "fields" | "concatenate" | "both"; formatSeparator?: | "comma" | "space" | "list" | "bullets" | "numbers" | "conjunction" | "disjunction" | "custom"; formatSeparatorCustom?: string; get label(): string; defineSlot(): void; defineEditor(): void; defineConditions(): void; }