import type { ComponentProps, CSSProperties } from 'react'; import { List } from '../../components/List'; import { Cell } from './components/Cell'; import { Row } from './components/Row'; type OfferListProps = Omit, 'selectable' | 'onSelectedChange' | 'colMode'> & { /** * Make offerList selectable by choosing its type */ type?: 'radio' | 'checkbox'; onChangeSelect?: (selected: string | string[]) => void; /** * Pre-selected rows (using their offerName). Must be an array when `type = "checkbox"`. */ selected?: string | string[]; ['data-testid']?: string; className?: string; style?: CSSProperties; }; export declare function OfferList({ expandable, type, columns, children, loading, autoCollapse, selected, onChangeSelect, className, style, 'data-testid': dataTestId, }: OfferListProps): import("react").JSX.Element; export declare namespace OfferList { export { Row }; export { Cell }; export var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map