import type { CSSProperties, DetailedHTMLProps, Ref, StyleHTMLAttributes } from 'react'; export declare function callAllEventHandlers(...fns: Array): (...args: any[]) => boolean; export declare function assignHandlers(props: any, source: any): any; export interface AssignableProps { ref?: Ref; style?: CSSProperties; className?: string; styles?: DetailedHTMLProps, HTMLStyleElement>; [key: string]: any; } export default function assignProps(props?: P, source?: S): any;
(props?: P, source?: S): any;