import type { MetaAction } from '../../actions/types';
import { Action } from '../../actions/FeedbackModal';
import { Indexable, ValidationError } from '../type-validate';
export declare const feedbackModalSchema: import("../type-validate").Validator;
export declare function validateProps(props: Indexable): {
    path: string | undefined;
    error: string;
    message?: string | undefined;
    value: any;
}[] | undefined;
export declare function validateAction(action: MetaAction): ValidationError[] | undefined;
export { Action };
