import type { PartialTreeFile, PartialTreeFolderNode, PartialTreeId } from '@uppy/core';
import type { h } from 'preact';
type ListItemProps = {
    file: PartialTreeFile | PartialTreeFolderNode;
    openFolder: (folderId: PartialTreeId) => void;
    toggleCheckbox: (event: Event) => void;
    className: string;
    isDisabled: boolean;
    restrictionError: string | null;
    showTitles: boolean;
    i18n: any;
};
export default function ListItem({ file, openFolder, className, isDisabled, restrictionError, toggleCheckbox, showTitles, i18n, }: ListItemProps): h.JSX.Element;
export {};
//# sourceMappingURL=ListItem.d.ts.map