import { FormRowTyped } from ".."; export interface Select extends FormRowTyped { label: string; options: string[]; allowsMultiselect?: boolean; minimumOptionCount?: number; displayLabel: (option: string) => string; } declare global { function createSelect(info: Select): Select; }