import type { MetaAction } from '../../actions/types';
import { Action } from '../../actions/Print';
export declare function validateAction(action: MetaAction): {
    path: string | undefined;
    error: string;
    message?: string | undefined;
    value: any;
}[] | undefined;
export { Action };
