import { Runtype } from './runtype'; declare type UnpackRuntypes> = T extends Runtype ? R : never; /** * A union of runtypes. */ export declare function union[]>(...runtypes: V): Runtype>; export {};