///
import { SxProps, Theme } from '@mui/material/styles';
import type { FileType } from '../../types/index.js';
export interface FilePreviewProps {
files: FileType[] | undefined;
disabled?: boolean;
sx?: SxProps;
onRemoveFile?: (file: FileType) => void;
getFilePreview: (file: File) => string;
renderBrandLogo: (fileId: string) => React.ReactNode;
renderOpenFileInNewTab: (fileId: string) => React.ReactNode;
}