UNPKG

@grafana/ui

Version:
13 lines (12 loc) 632 B
import * as React from 'react'; import type { JSX } from 'react'; import { type 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 {};