import { Options } from './config'; export declare type PrestaCLIOptions = { config?: string; output?: string; debug?: boolean; } & Partial; export declare type PrestaCLIBuildOptions = PrestaCLIOptions & { _: string[]; }; export declare type PrestaCLIServeOptions = PrestaCLIBuildOptions & { port?: string; 'no-serve': boolean; }; export declare type PrestaCLIDevOptions = PrestaCLIServeOptions; export declare function buildCommand(options: PrestaCLIBuildOptions): Promise; export declare function devCommand(options: PrestaCLIDevOptions): Promise<{ close(): Promise; }>; export declare function serveCommand(options: PrestaCLIServeOptions): Promise;