import { IconName } from "./icons.generated"; /** * Checks if the icon name is valid. * * @param name - The icon name to validate. * @returns {boolean} - Returns true if the icon name is valid, otherwise it returns false. */ export declare const isIconName: (name: unknown) => name is IconName; /** * Ensures that the icon name is valid, otherwise it returns the fallback icon name. * * @param name - The icon name to validate. * @param fallbackIconName - The fallback icon name to use if the icon name is invalid. * @returns {IconName} - Returns the icon name if it is valid, otherwise it returns the fallback icon name. */ export declare const ensureIconWithFallback: (name: IconName | string | undefined, fallbackIconName?: IconName) => IconName;