import { type HookFC, type Identity } from '@byted-apaas/cli-core-sdk'; declare const prePush: HookFC<{ identity: Identity; namespace: string; workspaceRoot: string; stepData: { yes?: boolean; shouldCheckBeforeBuild?: boolean; output?: string; }; }, { shouldSkipFollowedHooks?: boolean; currentHookSkipped?: boolean; }>; export default prePush;