import { ElementType, ReactElement } from 'react'; import { PolymorphicComponentPropsWithRef } from '../../typings'; interface BaseProps { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Specify whether or not this component should display the list's markers (bullets or numbers). */ marker?: boolean; } export type ListProps = PolymorphicComponentPropsWithRef; type ListComponent = (props: ListProps) => ReactElement | null; declare const List: ListComponent; export default List; //# sourceMappingURL=List.d.ts.map