import type { FunctionInfo, LogLevel } from '@remotion/serverless-client'; import type { AwsRegion } from './regions'; import type { RequestHandler } from './types'; export type GetFunctionsInput = { region: AwsRegion; compatibleOnly: boolean; logLevel?: LogLevel; requestHandler?: RequestHandler; }; export declare const getFunctions: (params: GetFunctionsInput) => Promise;