import type { CSSProperties, ReactNode } from 'react'; import { InfoTableCell } from './components/Cell'; import { CellWithCopyButton } from './components/CellWithCopyButton'; import { InfoTableRow } from './components/Row'; type InfoTableProps = { children: ReactNode; width?: string; size?: 'small' | 'large'; className?: string; 'data-testid'?: string; header?: ReactNode; style?: CSSProperties; }; /** * Use this component to display offers. * Create rows with `InfoTable.Row` and place cells within each row using `InfoTable.Cell`. */ declare const BaseInfoTable: { ({ children, width, className, style, 'data-testid': dataTestId, header, size, }: InfoTableProps): import("react").JSX.Element; displayName: string; }; export declare const InfoTable: typeof BaseInfoTable & { Row: typeof InfoTableRow; Cell: typeof InfoTableCell; CellWithCopyButton: typeof CellWithCopyButton; }; export {}; //# sourceMappingURL=index.d.ts.map