export interface CO2Props {
    byteSize: number;
    co2Factor?: number;
    isDataAdjusted: boolean;
}
/**
 * @desc calculate the carbon footprint based on the size, factor and applies an adjustment based on possible
 * cached files
 * @param byteSize
 * @param co2Factor
 * @param isDataAdjusted
 */
export declare const calculateCo2: ({ byteSize, co2Factor, isDataAdjusted }: CO2Props) => number;
//# sourceMappingURL=carbon-calculator.d.ts.map