import * as React from 'react'; import type { JSX } from 'react'; import { Props as IconButtonProps } from '../IconButton/IconButton'; interface MultiValueContainerProps { innerProps: JSX.IntrinsicElements['div']; } export declare const MultiValueContainer: ({ innerProps, children }: React.PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export type MultiValueRemoveProps = { innerProps: IconButtonProps; }; export declare const MultiValueRemove: ({ children, innerProps }: React.PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};