import type { CloudFormationCustomResourceEvent, CloudFormationCustomResourceResponse } from "aws-lambda"; /** The IAMAccessKey created is stored JSON.stringified using this interface */ export interface IAMAccessKey { accessKeyId: string; secretAccessKey: string; } export declare const onEvent: (event: CloudFormationCustomResourceEvent) => Promise;