import { Listr } from 'listr2';
import { PushCommandTasksContext } from '../../types/commands/push.js';
import { Region } from '../../types/general/region.js';
export declare const getTasksForClientSide: (appVersionId: number, directoryPath?: string, region?: Region) => Listr<PushCommandTasksContext, "default", "simple">;
export declare const getTasksForServerSide: (appVersionId: number, directoryPath?: string, region?: Region, securityScan?: boolean) => Listr<PushCommandTasksContext, "default", "simple">;
