interface GetNvIconSrcProps { /** The name of the icon */ name?: string; /** The source URL of the icon */ src?: string; publicPath?: string; /** A record of custom icons with their corresponding URLs */ customIcons: Record; } /** * Retrieves the source URL for an icon based on the provided parameters. * * @param name - The name of the icon. * @param src - The source URL of the icon. * @param customIcons - A record of custom icons with their corresponding URLs. * @returns The source URL of the icon if found, otherwise undefined. */ export declare const getNvIconSrc: ({ name, src, publicPath, customIcons, }: GetNvIconSrcProps) => string | undefined; export {};