/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { SpanProperties } from '../patterns/span';
import type { HTMLCerberusProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';

export interface SpanProps extends SpanProperties, DistributiveOmit<HTMLCerberusProps<'span'>, keyof SpanProperties > {}

/**
 * A span element


 */
export declare const Span: FunctionComponent<SpanProps>