import * as reflect from 'jsii-reflect';
import { EnumSchema } from '../schema';
import { Transpile } from '../transpile/transpile';
export declare class Enum {
    private readonly transpile;
    private readonly enu;
    private readonly transpiled;
    private readonly members;
    constructor(transpile: Transpile, enu: reflect.EnumType);
    toJson(): EnumSchema;
}
