/**
 * copy source file to packages
 */
declare function copyThemeChalkSource(srcDir: string, themeSourceDir: string, distDir: string): any;
interface EloraBuildThemeOptions {
    srcDir: string;
    themeSourceDir: string;
    themeFileDir: string;
    distDir: string;
}
declare function EloraBuildTheme(options: EloraBuildThemeOptions): any;

export { EloraBuildTheme, type EloraBuildThemeOptions, copyThemeChalkSource, EloraBuildTheme as default };
