/**
 * Chrome Setup Helper
 *
 * Provides utilities to detect and help resolve Chrome/Chromium setup issues
 * for PDF generation when installed via npm.
 */
export interface ChromeStatus {
    hasSystemChrome: boolean;
    hasPuppeteerCache: boolean;
    chromePaths: string[];
    suggestions: string[];
}
/**
 * Checks the current Chrome/Chromium setup status
 */
export declare function checkChromeStatus(): ChromeStatus;
/**
 * Attempts to automatically install Chrome for Puppeteer in global cache
 */
export declare function autoInstallChrome(): Promise<boolean>;
/**
 * Displays helpful Chrome setup information to the user
 */
export declare function displayChromeHelp(): void;
//# sourceMappingURL=chrome-setup-helper.d.ts.map