import React, { CSSProperties } from 'react'; declare type SkeletonBrickProps = { className?: string; width?: CSSProperties['width']; height: CSSProperties['height']; }; export declare const SkeletonBrick: React.FC; export {};