import * as constructs from "constructs"; interface Props { region: string; name: string; value: string; } /** * SSM Parameter stored in another region. */ export declare class CrossRegionSsmParameter extends constructs.Construct { constructor(scope: constructs.Construct, id: string, props: Props); } export {};