import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface SkeletonTextProps extends ComposableProps<'div'> { /** * Number of lines to display * @default 1 */ lines?: number; /** * Width of each line */ width?: string | number; /** * Animation type * @default 'pulse' */ animation?: 'pulse' | 'wave' | 'none'; } /** * SkeletonText Component * * A composable component for displaying text skeleton loaders. * Typically used within Skeleton or standalone. * * @public * * @example * ```tsx * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles multiple lines with spacing. */ export declare const SkeletonText: React.ForwardRefExoticComponent>; //# sourceMappingURL=SkeletonText.d.ts.map