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