import { FunctionComponent, HTMLProps, ReactNode } from 'react'; import { OneOf } from '../../typeUtils'; export const ListVariant: { grid: 'grid'; inline: 'inline'; }; export interface ListProps extends HTMLProps { children?: ReactNode; variant?: OneOf; } declare const List: FunctionComponent; export default List;