import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import { type FallbackBaseProps, type FallbackProps } from '../layout/Fallback'; export type TextFallbackBaseProps = Omit & { /** Font token used to size the fallback to match text line height. */ font: ThemeVars.FontSize; }; export type TextFallbackProps = Omit & Pick; /** * Loading placeholder sized to match a typography font token's line height. */ export declare const TextFallback: import('react').NamedExoticComponent; //# sourceMappingURL=TextFallback.d.ts.map