import type * as React from 'react';
import type { PickOnlyFunctionProps } from '../types';
/**
 * Полезен, когда нужно сохранить пользовательские события.
 *
 * Приоритет даём пользовательскому событию. Например, можно будет отловить был ли вызван
 * `event.preventDefault()` через `event.defaultPrevented`.
 *
 * @private
 */
export declare const getMergedSameEventsByProps: <T extends keyof React.JSX.IntrinsicElements | React.JSXElementConstructor<any>, MainProps extends React.ComponentProps<T>, OnlyFnPropsByMain extends PickOnlyFunctionProps<MainProps>>(mainProps: MainProps, secondProps: React.ComponentProps<T>) => { [K in keyof OnlyFnPropsByMain]?: ((this: any, ...args: Parameters<OnlyFnPropsByMain[K]>) => void) | undefined; };
//# sourceMappingURL=getMergedSameEventsByProps.d.ts.map