import Field from './Field'; import { FieldContract } from '@tensei/common'; export interface Option { label: string; value: string; } export declare class Select extends Field { component: { form: string; index: string; detail: string; }; private selectOptions; constructor(name: string, databaseField?: string); default(this: T & { selectOptions: Option[]; }, value: string): T; /** * Set the min value for this number field. * Will be the min on the number in * forms * */ options(options: Array