import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../types'; /** * Props for the SkeletonPill component * @extends Omit, "children"> * @extends Omit */ export type SkeletonPillProps = Omit, "children"> & Omit & { /** * The width of the pill skeleton in CSS units. */ width?: string; /** * Enables the AI visual style with blue gradient colors. */ ai?: boolean; }; /** * SkeletonPill component for displaying pill-shaped loading placeholders. * * Features: * - Pill-shaped skeleton placeholder with customizable width * - Animated pulsing effect for loading indication * - Accessible with proper ARIA attributes * - Layout utility props for positioning and spacing * - Customizable styling through className and style props * - Progress bar role for screen readers * - Large border radius for pill appearance * - Fixed height for consistent styling * * @example * * * */ export declare const SkeletonPill: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref">, "children"> & Omit & { /** * The width of the pill skeleton in CSS units. */ width?: string; /** * Enables the AI visual style with blue gradient colors. */ ai?: boolean; } & import('react').RefAttributes>;