import { ReactElement } from 'react'; import { ListRowProps } from './List.interface'; declare const ListRow: { ({ ref, children, className, dataTheme, ...props }: ListRowProps): ReactElement; displayName: string; }; export default ListRow;