import type { PivotHeadHost } from './host'; import { type ConnectionOptions, type FileConnectionResult } from '@mindfiredigital/pivothead'; export declare function exportToHTML(host: PivotHeadHost, fileName?: string): void; export declare function exportToPDF(host: PivotHeadHost, fileName?: string): void; export declare function exportToExcel(host: PivotHeadHost, fileName?: string): void; export declare function openPrintDialog(host: PivotHeadHost): void; export declare function loadFromFile(host: PivotHeadHost, file: File): Promise; export declare function loadFromUrl(host: PivotHeadHost, url: string): Promise; export declare function connectToLocalCSV(host: PivotHeadHost, options?: ConnectionOptions): Promise; export declare function connectToLocalJSON(host: PivotHeadHost, options?: ConnectionOptions): Promise; export declare function connectToLocalFile(host: PivotHeadHost, options?: ConnectionOptions): Promise;