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