import { default as React } from 'react'; type Size = 's' | 'm' | 'l' | 'xl' | 'xxl'; export type SkeletonTextProps = { /** * className for the element. */ className?: string; /** * The size of the element. * @default m */ size?: Size; /** * The width of the element. */ width?: string; }; /** * Provides a placeholder while you wait for the content to load. * @see https://grapes.spendesk.design/docs/components/skeleton */ export declare const SkeletonText: ({ className, size, width, }: SkeletonTextProps) => React.JSX.Element; export {}; //# sourceMappingURL=SkeletonText.d.ts.map