import { InputSelectProps } from "@lifesg/react-design-system/input-select"; import { TComponentOmitProps } from "../../frontend-engine"; import { IBaseFieldSchema } from "../types"; export interface ISelectOption { label: string; value: string; } export interface ISelectSchema extends IBaseFieldSchema<"select", V>, TComponentOmitProps> { }