import type { JSX, ReactNode } from "react";
export interface List {
    list?: any;
    formatter?: Function;
    fallback?: string | ReactNode | JSX.Element;
    fill?: boolean;
    style?: object;
}
export default function List(props: List): JSX.Element;
//# sourceMappingURL=List.d.ts.map