import * as React from 'react'; interface SkeletonBlockOptions extends React.HTMLAttributes { /** * HTML element tag * * @default 'div' */ tag: string; /** * Avatar block CSS width * * @default undefined */ width: string; /** * Avatar block CSS height * * @default undefined */ height: string; /** * Animation effectt */ effect: 'fade' | 'pulse' | 'blink'; } declare const SkeletonBlock: React.FunctionComponent; export default SkeletonBlock;