import { SourceMapUploadToolConfigurationOptions } from './types'; type configureSentryCLIOptions = SourceMapUploadToolConfigurationOptions & { defaultArtifactPath?: string; }; export declare function configureSentryCLI(options: configureSentryCLIOptions, configureSourcemapGenerationFlow?: () => Promise, skipValidation?: boolean): Promise; export declare function setupNpmScriptInCI(): Promise; /** * Add the sentry:sourcemaps command to the prod build command in the package.json * - Detect the user's build command * - Append the sentry:sourcemaps command to it * * @param packageDotJson The package.json which will be modified. */ export declare function addSentryCommandToBuildCommand(): Promise; export {};