import { type Identity, type HookFC } from '@byted-apaas/cli-core-sdk'; import { type ChangeSummary } from '../../devOps/scmHelpers/types'; import { type TrackingTaskInfo } from '../../helpers/types'; declare const push: HookFC<{ identity: Identity; namespace: string; workspaceRoot: string; stepData: { changeSummary?: ChangeSummary; useCustomSCM?: boolean; output?: string; }; }, { stepData: { trackingTaskInfo: TrackingTaskInfo; }; }>; export default push;