import type { InputOptionProps } from "../../types/components/options";
interface Props extends InputOptionProps {
    fieldId?: string;
    selectionMode?: "single" | "multiple";
    onButtonAction?: (action: {
        type: string;
    }, actionId?: string) => void;
    onInputChanged?: (fieldId: string, value: string, actionId?: string) => void;
}
declare const InputOptionTestWrapper: import("svelte").Component<Props, {}, "">;
type InputOptionTestWrapper = ReturnType<typeof InputOptionTestWrapper>;
export default InputOptionTestWrapper;
