import { CSSProperties } from 'react'; import { PropsWithHTMLAttributes } from '../../../utils/types/PropsWithHTMLAttributes'; type SkeletonBrickProps = PropsWithHTMLAttributes<{ width?: CSSProperties['width']; height: CSSProperties['height']; }, HTMLDivElement>; export declare const SkeletonBrick: ({ className, width, height, style, ...otherProps }: SkeletonBrickProps) => import("react/jsx-runtime").JSX.Element; export {};