/** * @summary Combines provided porps with component's theme props and resloves them. * @description NOTE: Avoid passing JSX and functions. * @arg {string} component - Name of the component. * @arg {object} incomingProps - Props passed by the user. * @returns {object} Resolved props. */ export declare function usePropsResolution(component: string, incomingProps: any, config?: any): Partial;