export interface FormatProps { /** Type of the file (e.g. 'CSV', 'PDF', 'XLS') */ fileType: string; /** Width of the format icon */ width?: number; } declare const Format: ({ fileType, width }: FormatProps) => import("react/jsx-runtime").JSX.Element; export default Format;