import { CSSProperties } from "react"; export interface ShimmerEffectBoxProps { fontSize?: CSSProperties["fontSize"]; width?: CSSProperties["width"]; height?: CSSProperties["height"]; inline?: boolean; style?: CSSProperties; className?: string; borderRadius?: string | number; } /** * 大きさを指定したローディング用の表示を作ることができます。 * * **使用例** * * - ローディングが終わるまで大きさが不確定な要素 * - カードリスト表示など、列挙される要素群 */ export declare const ShimmerEffectBox: ({ width, height, fontSize, borderRadius, inline, ...props }: ShimmerEffectBoxProps) => import("@emotion/react/jsx-runtime").JSX.Element;