import { IBaseWTTPSite, LOCATEResponseStruct } from "@wttp/core"; import { looseEqual, chunkData, getMimeType, getMimeTypeWithCharset } from "../utils"; export { looseEqual, getMimeType, getMimeTypeWithCharset, chunkData }; export declare function getChainSymbol(): Promise; export declare function waitForGasPriceBelowLimit(gasLimitGwei: number, checkIntervalMs?: number): Promise; export declare function getDynamicGasSettings(): Promise<{ maxFeePerGas: bigint; maxPriorityFeePerGas: bigint; }>; export declare function getEstimationGasPrice(customGasPriceGwei?: number, rate?: number, minGasPriceGwei?: number): Promise; export declare function uploadFile(wttpSite: IBaseWTTPSite, sourcePath: string, destinationPath: string, fileLimitBytes?: number, gasLimitGwei?: number, customPublisher?: string): Promise<{ response: LOCATEResponseStruct; content?: Uint8Array; }>; export interface FileEstimateResult { totalGas: bigint; totalCost: bigint; royaltyCost: bigint; transactionCount: number; chunksToUpload: number; needsPUT: boolean; gasPrice: bigint; } export declare function estimateFile(wttpSite: IBaseWTTPSite, sourcePath: string, destinationPath: string, gasPriceGwei?: number, rate?: number, minGasPriceGwei?: number, customPublisher?: string): Promise; //# sourceMappingURL=uploadFile.d.ts.map