export { calculateCo2 } from './carbon-calculator';
export interface ByteToCo2Props {
    byteSize: number;
    country?: string;
    year?: number;
    carbonFactor?: number;
    isDataAdjusted: boolean;
}
export declare const countries: {
    code: string;
    name: string;
}[];
export declare const bytesToCo2: ({ byteSize, country, isDataAdjusted }: ByteToCo2Props) => number;
//# sourceMappingURL=index.d.ts.map