import React, { ButtonHTMLAttributes } from 'react';
import type { FieldProps } from '../Field';
export declare type SelectRefElement = HTMLButtonElement;
export interface SelectButtonProps extends Pick, Omit, 'value'> {
/**
* Выводимое значение.
*/
value?: string | number | null;
hasItems?: boolean;
isOpen?: boolean;
children?: never;
}
export declare const SelectButton: React.ForwardRefExoticComponent>;
//# sourceMappingURL=SelectButton.d.ts.map