import './index.css';
import React, { ReactNode } from 'react';
import { MenuListChildren } from './MenuList';
import { PopoverProps } from './Popover';
export type DropdownSelectorProps = {
label: string;
value: string;
disabled?: boolean;
placeholder?: string;
showLabel?: boolean;
invalid?: boolean;
assistiveText?: string;
required?: boolean;
requiredText?: string;
subLabel?: ReactNode;
/**
* the name of hidden ``
*/
name?: string;
children: MenuListChildren;
onChange: (value: string) => void;
className?: string;
selectRef?: React.Ref;
} & Pick;
export default function DropdownSelector({ onChange, showLabel, selectRef, ...props }: DropdownSelectorProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map