import * as React from 'react';
import type { BaseUIComponentProps } from './types.js';
export declare function evaluateRenderProp<ElementType extends React.ElementType, State>(render: BaseUIComponentProps<ElementType, State>['render'], props: React.HTMLAttributes<any> & React.RefAttributes<any>, state: State): React.ReactElement<Record<string, unknown>>;
