import React from 'react'; export type IRowListViewSize = 'small' | 'medium'; export interface IListViewItemSimplifiedProps { image?: React.ReactNode; label: React.ReactNode; value?: React.ReactNode; actions?: React.ReactNode; className?: string; compactLabel?: boolean; } /** * Use the list view to summarise information, for example a user’s responce at the declaration form or for showing performance data */ export declare function ListViewItemSimplified({ image, label, value, className, actions, compactLabel }: IListViewItemSimplifiedProps): React.JSX.Element; export declare function ListViewSimplified({ className, bottomBorder, children, id, rowHeight }: { bottomBorder?: boolean; className?: string; children: React.ReactNode; id?: string; rowHeight?: IRowListViewSize; }): React.JSX.Element; //# sourceMappingURL=ListViewSimplified.d.ts.map