import { AllHTMLAttributes, RefAttributes } from 'react'; export declare const composeHandlers: (...callbacks: (Function | null | undefined)[]) => (...args: unknown[]) => void; interface UserProps extends AllHTMLAttributes, RefAttributes { } export declare function createPropsGetter(resolver: (userProps: UserProps) => TProps): (userProps?: TUserProps) => TProps & TUserProps; export {};