@grafana/ui
Version:
Grafana Components Library
12 lines (11 loc) • 593 B
TypeScript
import * as React from 'react';
import { Props as IconButtonProps } from '../IconButton/IconButton';
interface MultiValueContainerProps {
innerProps: JSX.IntrinsicElements['div'];
}
export declare const MultiValueContainer: ({ innerProps, children }: React.PropsWithChildren<MultiValueContainerProps>) => import("react/jsx-runtime").JSX.Element;
export type MultiValueRemoveProps = {
innerProps: IconButtonProps;
};
export declare const MultiValueRemove: ({ children, innerProps }: React.PropsWithChildren<MultiValueRemoveProps>) => import("react/jsx-runtime").JSX.Element;
export {};