export declare enum EnumOmegaValueKind { Literal = "Literal", OutputRef = "OutputRef" } export interface IOmegaValue { readonly kind: EnumOmegaValueKind; readonly value: string; } export declare const OmegaLiteral: (value: string) => IOmegaValue; export declare const OmegaRef: (key: string) => IOmegaValue;