import { type BabelCompileOptions } from '@tsbb/babel';
export interface CompileOptions extends BabelCompileOptions {
    watch?: boolean;
    bail?: boolean;
    build?: boolean;
    entry?: string[];
    [key: string]: any;
}
export declare function compile(options?: CompileOptions): Promise<void>;
