/** * @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-svg-icons'; import * as React from 'react'; interface SeriesTypeButtonProps { selected?: boolean; onClick: () => void; children?: React.ReactNode; icon: SVGIcon; iconName: string; } /** * @hidden */ export declare const SeriesTypeButton: React.FC; export {};