/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type FileListProps = {} & PropsWithChildren<HTMLAttributes<HTMLUListElement>>;
export declare const FileListRoot: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLOListElement>>;
export declare const FileList: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLOListElement>> & {
    Item: import("react").ForwardRefExoticComponent<{
        file: File;
        onDelete?: () => void;
    } & HTMLAttributes<HTMLLIElement> & import("react").RefAttributes<HTMLLIElement>>;
};
