import { TeleportProps } from 'vue'; export type Numberish = string | number; export type TeleporterProps = { teleportDisabled?: TeleportProps['disabled']; teleportTo?: TeleportProps['to']; }; export type ValidationState = boolean | null; export type ValueOrCallBack = T | (() => T);