import React from "react"; interface TestComboboxProps { readonly children?: React.ReactNode; readonly multiple?: true; readonly defaultValue?: string | string[]; readonly defaultOpen?: boolean; } declare function TestCombobox({ children, multiple, defaultValue, defaultOpen, }: TestComboboxProps): React.JSX.Element; declare function TestComboboxContent({ children, }: { readonly children?: React.ReactNode; }): React.JSX.Element; export { TestCombobox, TestComboboxContent };