import React from "react"; import type { CommandOptionFormatted } from "../../../Command/domain/CommandOptionFormatted.js"; import { Command } from "../../../Command/index.js"; interface MultiAutoCompleteListProps extends React.ComponentPropsWithoutRef { emptyMessage?: React.ReactNode; empty?: boolean; loading?: boolean; loadingMessage?: React.ReactNode; onOptionCreate?: (value: string) => void; onOptionSelect: (value: string) => void; optionRenderer?: (item: any, index: number) => React.ReactNode; options: CommandOptionFormatted[]; temporaryOption?: CommandOptionFormatted; } export declare const MultiAutoCompleteList: ({ emptyMessage, empty, loading, loadingMessage, onOptionCreate, onOptionSelect, optionRenderer, options, temporaryOption, ...props }: MultiAutoCompleteListProps) => React.JSX.Element; export {};