import * as Joi from 'joi';
import { ActionHandler, ActionSnapshot, IContext, IActionHandlerMetadata, IDelegatedParameters } from 'fbl';
export declare class K8sCleanupActionHandler extends ActionHandler {
    /**
     * {@inheritDoc}
     */
    private metadata;
    /**
     * {@inheritDoc}
     */
    private schema;
    /**
     * {@inheritDoc}
     */
    getMetadata(): IActionHandlerMetadata;
    /**
     * {@inheritDoc}
     */
    getValidationSchema(): Joi.SchemaLike | null;
    /**
     * {@inheritDoc}
     */
    execute(options: any, context: IContext, snapshot: ActionSnapshot, parameters: IDelegatedParameters): Promise<void>;
}
