import { LogLevels, NpmClientType } from '../types';
export interface RemovePiralInstancePiletOptions {
    /**
     * Sets the log level to use (1-5).
     */
    logLevel?: LogLevels;
    /**
     * The name of the Piral instance to remove.
     */
    app?: string;
    /**
     * Sets the source directory for adding the Piral instance.
     */
    source?: string;
    /**
     * The npm client to be used when scaffolding.
     * @example 'yarn'
     */
    npmClient?: NpmClientType;
}
export declare const removePiralInstancePiletDefaults: RemovePiralInstancePiletOptions;
export declare function removePiralInstancePilet(baseDir?: string, options?: RemovePiralInstancePiletOptions): Promise<void>;
