import * as React from 'react'; import type { ListComponentProps, ListyRef } from '../List'; export type RawListProps = ListComponentProps; declare const RawListWithRef: (props: RawListProps & { ref?: React.Ref; }) => React.ReactElement; export default RawListWithRef;