interface ConfigService {
    basePath: string;
}
declare class ConfigService {
    constructor(props: {
        basePath: string;
    });
    setup(): Promise<any>;
    checkEmpty(): Promise<boolean>;
    readContents(): Promise<{}>;
}
export { ConfigService };
