import { Action } from "./../index";
export declare class ValidationTest extends Action {
    name: string;
    description: string;
    inputs: {
        string: {
            required: boolean;
            validator: (param: string) => boolean;
        };
    };
    outputExample: {
        string: string;
    };
    run({ params }: {
        params: {
            string: string;
        };
    }): Promise<{
        string: string;
    }>;
}
