import { CSSProperties, Ref } 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?: { [key: string]: string; }; [key: string]: any; } export default function assignProps

(props?: P, source?: S): any;