/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { SVGIcon } from '@progress/kendo-react-common'; import * as React from 'react'; /** * @hidden */ export interface ListItemIconProps { /** * The icon name (string-based icon). */ icon?: string; /** * The SVG icon. */ svgIcon?: SVGIcon; } /** * @hidden */ export declare const ListItemIcon: React.FC;