/// import { SelectProps as SelectPropsArgo } from '@shopify/post-purchase-ui-extensions'; export declare const PLACEHOLDER_VALUE = ""; export interface SelectProps extends SelectPropsArgo { readonly?: boolean; } export declare function Select({ id: explicitId, name, label, options, value, disabled, readonly, required, error, autocomplete, placeholder, onChange, }: SelectProps): JSX.Element;