type OnEventHandler = (event: { RequestType: "Create" | "Update" | "Delete"; PhysicalResourceId?: string; ResourceProperties: Record; }) => Promise<{ PhysicalResourceId?: string; Data?: Record; }>; export declare const handler: OnEventHandler; export {};