import type { Config } from "../types";
export declare const readConfig: (directory?: string) => Promise<{
    config: Config;
    path: string;
    ext: string;
} | null>;
