import React from 'react'; import { FlintSkeleton as FlintSkeletonElement } from '@getufy/flint-ui/skeleton/flint-skeleton'; /** * Skeletons display a placeholder preview of content before data gets loaded. */ export interface FlintSkeletonProps extends React.HTMLAttributes { /** If true, applies dark-theme styles regardless of OS preference. */ dark?: boolean; /** * The animation type. * Allowed values: 'pulse' | 'wave' | 'none' */ animation?: 'pulse' | 'wave' | 'none'; /** * The shape of the skeleton. * Allowed values: 'text' | 'circular' | 'rectangular' | 'rounded' */ shape?: 'text' | 'circular' | 'rectangular' | 'rounded'; /** The width of the skeleton. Accepts any CSS length value (e.g. '200px', '50%'). */ width?: string; /** The height of the skeleton. Accepts any CSS length value. */ height?: string; /** Accessible label announced by screen readers. Set to '' to silence. */ label?: string; } export declare const FlintSkeleton: React.ForwardRefExoticComponent>;