import { Runtype } from './runtype'; declare type EnumObject = { [key: string]: string | number; }; /** * Any value defined in the enumObject. */ declare function enumRuntype(enumObject: T): Runtype; export { enumRuntype as enum };