import * as React from 'react'; import { ButtonProps } from '../Button'; import { AnchorPos } from '../Menu'; export type SelectboxButtonProps = Omit & { readonly fullWidth?: boolean; readonly error?: boolean; readonly anchorPos?: AnchorPos; readonly isOpen?: boolean; }; declare const _default: React.ForwardRefExoticComponent & { readonly fullWidth?: boolean | undefined; readonly error?: boolean | undefined; readonly anchorPos?: import("../Popper").AnchorPos | undefined; readonly isOpen?: boolean | undefined; } & React.RefAttributes>; export default _default;