import { CommandScriptProvider, CommandScriptProviderOptions } from "./CommandScriptProvider";
/**
 * A {@link ScriptProvider} that runs a test suite against the package's source code using the Jasmine test framework.
 */
export declare class TestScriptProvider extends CommandScriptProvider {
    /**
     * Creates an instance of {@link TestScriptProvider} using the `options` provided.
     *
     * @param options - The options to be used.
     */
    constructor(options: CommandScriptProviderOptions);
    protected getLoggerName(): string;
    getName(): string;
    runScript(directoryPath: string): Promise<void>;
}
