/**
 * This type represents the options that you can pass to the remove task.
 */
export interface TaskRemoveOptions {
    /**
     * The files to remove.
     */
    files: string;
}
/**
 * Returns the string for the bash command  to run
 * a remove file command, deleting them from disk.
 *
 * @param options - The options applied when running the copy.
 *
 * @example remove({ files: './dist' })
 *
 * @returns The bash command string.
 */
export declare const remove: (options: TaskRemoveOptions) => string;
//# sourceMappingURL=remove.d.ts.map