export declare const getConfig: (config?: string) => Promise<{
    hiddenDirectories: string[];
    source: string;
    output: string;
    sourceAlias?: string | undefined;
    type?: "browser" | "memory" | "hash" | undefined;
    formatter?: "prettier" | "eslint" | undefined;
}>;
export declare const doesConfigExist: (config?: string) => Promise<boolean>;
