import * as react_jsx_runtime from 'react/jsx-runtime'; import { ComponentProps, CSSProperties } from 'react'; type ShimmerProps = Omit, "width" | "height"> & { height: CSSProperties["height"]; width: CSSProperties["width"]; }; declare function Shimmer({ className, height, width, style, ...restProps }: ShimmerProps): react_jsx_runtime.JSX.Element; export { type ShimmerProps, Shimmer as default };