import { Deploy } from '@hubspot/local-dev-lib/types/Deploy'; export declare function validateBuildIdForDeploy(buildId: number, deployedBuildId: number | undefined, latestBuildId: number, projectName: string | undefined, accountId: number): boolean | string; export declare function logDeployErrors(errorData: { message: string; errors: Array<{ message: string; subCategory: string; context: { COMPONENT_NAME: string; }; }>; }): void; export declare function handleProjectDeploy(targetAccountId: number, projectName: string, buildId: number, isLegacyProject: boolean, force: boolean): Promise;