export declare function File({ title, name, md, fileURL, fileExt }: {
    title: string;
    fileURL: string;
    name: string;
    md?: number;
    fileExt?: string;
}): JSX.Element;
