/// <reference types="react" />
import { ListProps } from "./list";
import ListPlaceholder from "./list-placeholder";
export type { ListDirection } from "./list.shared";
interface ListInterface {
    (props: ListProps): JSX.Element;
    Placeholder: typeof ListPlaceholder;
}
declare const List: ListInterface;
export default List;
