import * as React from 'react'; import '@vtmn/css-skeleton/dist/index-with-vars.css'; import { VtmnSkeletonShape } from './types'; export interface VtmnSkeletonProps extends React.ComponentPropsWithoutRef<'span'> { /** * Width of the skeleton * @defaultValue 100% */ width?: string; /** * Height of the skeleton */ height?: string; /** * Define the type of shape. * @defaultValue 'line' */ shape?: VtmnSkeletonShape; } export declare const VtmnSkeleton: ({ width, height, shape, className, ...props }: VtmnSkeletonProps) => JSX.Element; declare const MemoVtmnSkeleton: React.MemoExoticComponent<({ width, height, shape, className, ...props }: VtmnSkeletonProps) => JSX.Element>; export default MemoVtmnSkeleton;