export declare type Config = { input: string; citations?: any; rerouteLinks?: (str: string) => string; }; /** * Processes Markdown with Syntax Highlighting * and Latex Preprocessors, and adds references. */ declare function markademic(config: Config): any; export { markademic };