import type { AwsProvider, AwsRegion, RuntimePreference } from '@remotion/lambda-client'; import type { LogLevel } from '@remotion/renderer'; import type { FullClientSpecifics, ProviderSpecifics } from '@remotion/serverless'; import type { DeploySiteOutput, InternalDeploySiteInput } from './api/deploy-site'; import type { AwsLayer } from './shared/hosted-layers'; export declare const LambdaInternals: { executeCommand: (args: string[], remotionRoot: string, logLevel: LogLevel, providerSpecifics: ProviderSpecifics | null, fullClientSpecifics: FullClientSpecifics | null) => Promise; internalDeploySite: (input: InternalDeploySiteInput) => DeploySiteOutput; getLayers: (options: { option: RuntimePreference; region: AwsRegion; }) => AwsLayer[]; }; export type { OverallRenderProgress as _InternalOverallRenderProgress } from '@remotion/serverless';