/** Dependencies */ import { Collection } from "@tripetto/builder"; import { PictureChoice } from "./"; export declare class Choice extends Collection.Item { name: string; nameVisible: boolean; image?: string; emoji?: string; description?: string; url?: string; target?: "self" | "blank"; moniker?: string; value?: string; labelForTrue?: string; labelForFalse?: string; score?: number; exclusive?: boolean; color?: string; defineSlot(): void; deleteSlot(): void; defineEditor(): void; }