import type { CloudProvider, OnStream, ProviderSpecifics, ServerlessPayload } from '@remotion/serverless-client'; import type { InsideFunctionSpecifics } from '../provider-implementation'; type Options = { params: ServerlessPayload; renderId: string; expectedBucketOwner: string; onStream: OnStream; timeoutInMilliseconds: number; providerSpecifics: ProviderSpecifics; insideFunctionSpecifics: InsideFunctionSpecifics; }; export declare const stillHandler: , Record, string, object>>(options: Options) => Promise<{ type: "success"; } | { type: "error"; message: string; stack: string; }>; export {};