/** * @jsxRuntime classic * @jsx jsx */ import { jsx } from '@emotion/react'; import { Component } from 'react'; interface TruncatedWrapperProps { backgroundColor?: string; children?: React.ReactNode; fadeHeight?: number; height?: number; } export declare class TruncatedWrapper extends Component { constructor(props: TruncatedWrapperProps); render(): jsx.JSX.Element; } export {};