/**
 * Check if an export statement contains a regular function declaration
 * MDX parser only works properly with arrow functions, so we skip regular functions
 */
export declare const containsRegularFunction: (exportStatement: string) => boolean;
