import { HTMLAttributes, default as React, ReactNode } from 'react'; export interface DataListItemCellOwnProps { /** * Content of the cell. * @default undefined */ children?: ReactNode; /** * Allows cell to grow. * @default true */ grow?: boolean; /** * Allows cell to shrink. * * Use it for small cells, e.g. with icons, buttons or checkboxes. * * @default true */ shrink?: boolean; } export interface DataListItemCellProps extends DataListItemCellOwnProps, Omit, 'className'> { } export declare function getDataListCellProps({ className, grow, shrink, ...rest }: P): Omit & { className: string; }; export declare const DataListItemCell: React.MemoExoticComponent<(props: DataListItemCellProps) => React.JSX.Element>;
({ className, grow, shrink, ...rest }: P): Omit
& { className: string; }; export declare const DataListItemCell: React.MemoExoticComponent<(props: DataListItemCellProps) => React.JSX.Element>;