import { Action, Props } from './index.types';
export declare function callOnChangeProps<S extends object, A extends {
    type: string;
}, P extends Props<S, A>>(action: Action<S, A, P>, props: P, state: S, newState: S): void;
