import { Action } from "./../index";
export declare class CacheTest extends Action {
    constructor();
    stringFormatter(s: any): string;
    stringValidator(s: any): true | "inputs should be at least 3 letters long";
    run({ params, response }: {
        params: any;
        response: any;
    }): Promise<void>;
}
