import { Project } from '@hubspot/local-dev-lib/types/Project'; export declare function ensureProjectExists(accountId: number, projectName: string, { forceCreate, allowCreate, noLogs, withPolling, uploadCommand, }?: { forceCreate?: boolean | undefined; allowCreate?: boolean | undefined; noLogs?: boolean | undefined; withPolling?: boolean | undefined; uploadCommand?: boolean | undefined; }): Promise<{ projectExists: boolean; project?: Project; }>;