import * as React from "react"; type Props = { value: string | null | undefined; onChange: (value: string | null) => void; placeholder?: string; disabled?: boolean; }; export declare function ProductCombobox({ value, onChange, placeholder, disabled }: Props): React.JSX.Element; export {};