import type { IFileTypeIconOptions } from './getFileTypeIconProps'; /** * Given the `fileTypeIconOptions`, this function returns the CDN-based URL for `FileTypeIcon`. * Similar to `getFileTypeIconProps`, this also accepts the same type of object * but rather than returning the `iconName`, this returns the raw URL. * @param options * @param baseUrl - optionally provide a custom CDN base url to fetch icons from */ export declare function getFileTypeIconAsUrl(options: IFileTypeIconOptions, baseUrl?: string): string | undefined;