import type { CreateEventMap } from '../types';
export type PatchedPropsHook = {
    patchedEventProps: CreateEventMap;
};
export declare function usePatchedProps<Props extends Record<string, any>>(createEventMap: CreateEventMap | undefined, wrappedComponentProps: Props): PatchedPropsHook;
