import { type Identity, type HookFC } from '@byted-apaas/cli-core-sdk'; import { type TaskLog } from '@byted-apaas/cli-sdk-biz-helpers'; import { type TrackingTaskInfo } from '../../helpers/types'; declare const deploy: HookFC<{ identity: Identity; namespace: string; workspaceRoot: string; stepData: { trackingTaskInfo?: TrackingTaskInfo; useCustomSCM?: boolean; taskListLog?: TaskLog; }; }, { postAction: () => Promise; }>; export default deploy;