import type { FrontMatterResult } from 'front-matter'; /** * Common configuration file reader with front-matter support * @param filePath */ export declare function readConfigFile(filePath: string): Promise<{ content: FrontMatterResult; baseDir: string; }>;