import type { CSSProperties, ElementType, HTMLAttributes } from 'react';
import { type CssLength } from '../../../utils/css';
type RayTextProps = Omit, 'children' | 'style'> & {
as?: ElementType;
children?: string | number;
fontFamily?: CSSProperties['fontFamily'];
perspective?: CssLength;
scaleX?: number;
scaleY?: number;
style?: CSSProperties;
text?: string | number;
};
declare const RayText: ({ as: Component, children, className, fontFamily, perspective, scaleX, scaleY, style, text, ...props }: RayTextProps) => import("react/jsx-runtime").JSX.Element;
export { RayText };
export type { RayTextProps };