/**
 * Determine the type of icon based upon the identifier.
 *
 * We support the following iconset:
 *
 * - `ux-icon` - UX Icon Set
 * - `component` - Component icon not tied to a specific set
 *
 * @param identifier - The name of the icon
 */
export declare function getIconType(identifier: string | null): IconType;
export declare enum IconType {
    UxIcon = "ux-icon",
    Component = "component"
}
