import { Validator, ValidationError } from './type-validate'; import { Indexable } from '../actions/merge'; export declare function createActionValidator(type: Indexable, payloadSchema?: Validator | undefined, payloadRequired?: boolean, idRequired?: boolean): Validator; export declare function actionMessage(errors: ValidationError[]): string; export declare function isValidRelativePath(path?: string): boolean; export declare const relativePathSchema: Validator;