import { Type } from './type';
/**
* A union of literals. When you want to take an exact enum value.
*/
export declare function oneOf<T extends string>(literals: T[]): Type<string, T>;