import { TComponentOmitProps } from "../../frontend-engine"; import { IBaseFieldSchema } from "../types"; import { ToggleProps } from "@lifesg/react-design-system/toggle"; type TCustomOptions = { border?: boolean | undefined; }; export interface ISwitchSchema extends IBaseFieldSchema<"switch", V>, TComponentOmitProps { customOptions?: TCustomOptions | undefined; } export {};