import { default as React } from 'react';
export interface FileIconProps {
/** MIME type or file extension */
type: string;
/** Icon size */
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
/** Show colored icon */
colored?: boolean;
/** Additional className */
className?: string;
}
/**
* FileIcon Component
*
* Displays an appropriate icon based on file type or content type.
* Automatically determines the icon from MIME type or file extension.
*
* @example
* ```tsx
*
*
*
* ```
*
* @example
* ```tsx
*
*
* ```
*/
export declare const FileIcon: React.FC;
//# sourceMappingURL=file-icon.d.ts.map