/**
 * Extracts the default export variable from a file.
 * @param filepath Path to the file to extract the default export from.
 * @returns The default export variable or null if no default export exists.
 */
export declare function extractDefaultExportVariable(fileContent: string): string | null;
