export declare const REF = "Ref";
export declare type RefKey = typeof REF;
export interface Ref {
    Ref: string;
}
export declare const isRef: import("@altostra/type-validations").ObjectOfTypeValidation<Ref>;
export declare function mkRef(logicalId: string): Ref;
