import React from 'react'; import { listProps } from './interface'; import Item from './item'; import './style/_list.scss'; export declare const ctx: React.Context; interface ForwardRefListType extends React.ForwardRefExoticComponent & React.RefAttributes> { (props: React.PropsWithChildren & { ref?: React.Ref; }): React.ReactElement; Item: typeof Item; displayName: string; } declare const ListComponent: ForwardRefListType; export default ListComponent;