export type TextBlockAnimatedProps = { label?: string; body: string; colorScheme: 'light' | 'dark'; }; export declare function TextBlockAnimated({ label, body, colorScheme }: TextBlockAnimatedProps): import("react").JSX.Element;