import * as React from 'react'; import { BaseType, StyleFn, ForceInference, InferProps, InnerRefProp, PassthroughProps } from './types'; import { Compute } from '@cloudflare/types'; declare function createComponent(rule: StyleFn, AdditionalStyleProps>): React.ComponentType & AdditionalStyleProps & InnerRefProp<'div'>>>; declare function createComponent(rule: StyleFn, AdditionalStyleProps>, base?: Base, passthroughProps?: PassthroughProps & AdditionalStyleProps>): React.ComponentType & AdditionalStyleProps & InnerRefProp>>; export default createComponent;