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