import { type CSSProperties, type ElementType, type HTMLAttributes } from 'react'; import { type CssLength } from '../../../utils/css'; export type SleepyTextProps = Omit, 'children' | 'style'> & { as?: ElementType; children?: string; color?: string; delayStep?: number; drift?: CssLength; duration?: number; fontFamily?: CSSProperties['fontFamily']; fontSize?: CssLength; rise?: CssLength; style?: CSSProperties; zColor?: string; zCount?: number; zFontFamily?: CSSProperties['fontFamily']; zOffsetX?: CssLength; zOffsetY?: CssLength; zSize?: CssLength; zText?: string; }; declare const SleepyText: ({ as: Component, children, className, color, delayStep, drift, duration, fontFamily, fontSize, rise, style, zColor, zCount, zFontFamily, zOffsetX, zOffsetY, zSize, zText, ...props }: SleepyTextProps) => import("react/jsx-runtime").JSX.Element; export { SleepyText };