import { Indexable, ValidationError } from '../type-validate'; import { ActionType } from '../../actions/ContextualSaveBar'; import { MetaAction } from '../../actions/types'; export declare const contextSaveBarSchema: (value: any) => ValidationError[] | undefined; 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 { ActionType };