export function getIconForSearchResult(searchResult: any): {
    type: string;
    app: any;
    component?: undefined;
} | {
    type: string;
    component: import("react").ReactNode;
    app?: undefined;
};
export function getDriveMimeTypeIcon(file: import("cozy-client/types/types").IOCozyFile, { isEncrypted }?: {
    isEncrypted?: boolean | undefined;
} | undefined): import("react").ReactNode;
