export interface IS3Event {
    bucket: string;
    type: [string, string];
    rules?: any[];
}
export declare const parseS3: (event: any, provider: Record<string, any>) => IS3Event | undefined;
