import { TypographyVariant } from "../theme"; import { ShimmerEffectBoxProps } from "./ShimmerEffectBox"; export interface ShimmerEffectTextProps extends Omit { typographyVariant: TypographyVariant; } /** * ShimmerEffectTextは、ShimmerEffectBoxの薄いラッパーです。 * 一行の文章のローディング表示を、Typographyのvariantに基づいて生成します。 * * widthにch単位を利用すると、文字数に合わせて幅を調整することができるので利用をおすすめします。 */ export declare const ShimmerEffectText: ({ typographyVariant, ...rest }: ShimmerEffectTextProps) => import("@emotion/react/jsx-runtime").JSX.Element;