import type { ZenodoResource } from "../Resource.ts";
/**
 * Normalizes a Zenodo file to Frictionless Data resource format
 * @param props Object containing the Zenodo file to normalize
 * @returns Normalized Resource object
 */
export declare function normalizeZenodoResource(zenodoResource: ZenodoResource): {
    path: string;
    name: string;
    format: string | undefined;
    bytes: number;
    hash: string;
    "zenodo:key": string;
    "zenodo:url": string;
};
