export declare function useProps, U extends Partial | null = {}>(component: string, defaultProps: U, props: T): T & (U extends null | undefined ? {} : { [Key in Extract]-?: U[Key] | NonNullable; });