import * as constructs from 'constructs'; export interface SsmCrossRegionWriterProps { readonly prefix: string; readonly region: string; readonly params: Record; } export declare class SsmCrossRegionWriter extends constructs.Construct { constructor(scope: constructs.Construct, id: string, props: SsmCrossRegionWriterProps); }