import type { CloudFormationValue } from "./common";
export declare const FN_IMPORT_VALUE = "Fn::ImportValue";
export declare type ImportValueKey = typeof FN_IMPORT_VALUE;
export interface ImportValue {
    'Fn::ImportValue': CloudFormationValue;
}
export declare const isImportValue: import("@altostra/type-validations").ObjectOfTypeValidation<ImportValue>;
export declare function mkImportValue(sharedValueToImport: CloudFormationValue): ImportValue;
