import { UserConfig } from '../types.js';
export declare const loadConfig: (configPath: string) => Promise<{
    isSuccess: true;
    config: UserConfig;
    error: null;
} | {
    isSuccess: false;
    config: null;
    error: string;
}>;
