import { JSX } from 'react'; import { LassoToolsInlineComponentProps } from './types'; /** * Provides an inline layout variant of the lasso tools interface with toggle button groups for mode selection and inline chip management for spatial filters. * * @example * ```tsx * * ``` */ export declare function LassoToolsInlineUI({ enabled, values, chipProps, labels, modes, modesMapping, modeSelected, BoxProps: { sx, ...BoxProps }, onChipToggle, onDelete, onChangeMode, onAllChipToggle, onAllDelete, }: LassoToolsInlineComponentProps): JSX.Element;