import { MetricsExporter } from '../utils/metrics-exporter.js'; import { DeploymentConfig, DeploymentHooks } from './types.js'; import './graphql/deployment-verification-details.js'; interface BuildProjectOptions { config: DeploymentConfig; assetPath?: string; hooks?: DeploymentHooks; metricsExporter?: MetricsExporter; } declare function buildProject(options: BuildProjectOptions): Promise; export { buildProject };