import type { CSSProperties, ReactNode } from 'react'; export type CellProps = { children: ReactNode; title: ReactNode; multiline?: boolean; style?: CSSProperties; }; export declare function InfoTableCell({ children, title, multiline, style }: CellProps): import("react").JSX.Element; export declare namespace InfoTableCell { var displayName: string; } //# sourceMappingURL=Cell.d.ts.map