import React, { PropsWithChildren } from 'react'; interface FileDetailsLabelProps { /** Name of file, including extension */ fileName: string; /** Whether to display loading icon */ isLoading?: boolean; /** Callback function for when label is clicked */ onClick?: (event: React.MouseEvent) => void; /** Callback function for when close button is clicked */ onClose?: (event: React.MouseEvent) => void; /** Aria label for close button */ closeButtonAriaLabel?: string; } export declare const FileDetailsLabel: ({ fileName, isLoading, onClick, onClose, closeButtonAriaLabel }: PropsWithChildren) => React.JSX.Element; export default FileDetailsLabel;