import React from 'react'; export interface IComparisonListProps { children: React.ReactNode; headings: React.ReactNode[] | string[]; } export declare const ComparisonListView: { ({ children, headings, ...props }: IComparisonListProps): React.JSX.Element; Row: React.FC<{ label: React.ReactNode; heading: { right: string; left: string; }; leftValue: React.ReactNode; rightValue: React.ReactNode; }>; }; //# sourceMappingURL=ComparisonListView.d.ts.map