import { ElementType, ComponentPropsWithRef, ReactElement } from 'react'; import { ClayProps } from './Clay.types.js'; import '@emotion/react'; import '../../types.js'; /** @jsxImportSource @emotion/react */ type ClayComponent = (props: ClayProps & { ref?: ComponentPropsWithRef["ref"]; }) => ReactElement | null; declare const ClayNameSpace: ClayComponent & { displayName: string; }; export { ClayNameSpace as Clay, ClayProps };