import { type PropsWithChildren, type ReactNode } from 'react'; import { type AriaLabelingProps, type DOMProps } from '@dynatrace/strato-components/core'; /** * @public */ export type ChartSeriesActionProps = DOMProps & AriaLabelingProps & { children: ReactNode; /** * Disabled * @defaultValue false */ disabled?: boolean; }; /** * Slot component for chart series actions * @public */ export declare const ChartSeriesAction: { ({ children, }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; } & { Intent: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Item: { ({ children, }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; ItemTooltip: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Label: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; ItemIcon: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Group: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Sub: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; SubTrigger: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; SubContent: { ({ children }: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; Link: { ({ children, }: PropsWithChildren>): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; };