/**
 * This type represents the options that you can pass to the serve task.
 */
export interface TaskServeOptions {
    /**
     * The directory to serve
     */
    dir: string;
}
/**
 * Returns the string for the bash command  to run
 * serve with default configuration.
 *
 * @param options - The options applied when running serve.
 *
 * @example serve({ dir: './coverage' })
 *
 * @returns The bash command string.
 */
export declare const serve: (options: TaskServeOptions) => string;
//# sourceMappingURL=serve.d.ts.map