import { IconCategories, IconMetadata } from './types.js'; export { /** * Metadata for all available onyx icons. */ default as ICON_METADATA, } from './metadata.json'; export * from './types.js'; /** * Groups all available icon metadata by category. * Categories and icons will be sorted alphabetically. */ export declare const groupIconsByCategory: (iconMetadata: Record) => IconCategories; /** * Transform an icon file name to its corresponding JavaScript import name. * * @example * ```ts * "bell-disabled.svg" => "iconBellDisabled" * // e.g. used as 'import { iconBellDisabled } from "@sit-onyx/icons"' * ``` */ export declare const getIconImportName: (iconName: string) => string; /** * Capitalizes the first character of the given string. */ export declare const capitalize: (value: string) => string;