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