export type CloudrunErrorInfo = { type: 'renderer' | 'browser' | 'stitcher' | 'webhook'; message: string; name: string; stack: string; }; export declare const writeCloudrunError: ({ bucketName, renderId, errorInfo, publicUpload, }: { bucketName: string; renderId: string; errorInfo: CloudrunErrorInfo; publicUpload: boolean; }) => Promise;