import React from 'react'; import { type TextStyle } from 'react-native'; /** * A shimmering text label. React Native has no CSS `background-clip: text`, so * we render the text as SVG filled with a horizontal gradient and sweep the * gradient across it via an animated `x1`/`x2`. An invisible RN `` drives * layout/measurement; the SVG is overlaid on top at the measured size. */ export declare function ShimmerText({ text, fontSize, fontWeight, }: { text: string; fontSize?: number; fontWeight?: TextStyle['fontWeight']; }): React.JSX.Element; //# sourceMappingURL=ShimmerText.d.ts.map