export declare const LATEST_VERSION = "3"; export declare const SSM_NAME_VERSION = "/sst/bootstrap/version"; export declare const SSM_NAME_STACK_NAME = "/sst/bootstrap/stack-name"; export declare const SSM_NAME_BUCKET_NAME = "/sst/bootstrap/bucket-name"; export interface Assets { version?: string; stackName?: string; bucketName?: string; } interface BootstrapOptions { tags?: Record; force?: boolean; } export declare const assets: Assets; export declare function bootstrap(config: any, cliInfo: any, options?: BootstrapOptions): Promise; export declare function init(region: string): Promise; export * as Bootstrap from "./index.js";