import type { AriaAttributes, FocusEventHandler, KeyboardEventHandler, MouseEventHandler, ReactNode, Ref } from 'react'; export type MultiSelectAnchorParams = { ref: Ref; children: ReactNode; disabled: boolean; onClick: MouseEventHandler; onBlur: FocusEventHandler; onKeyUp: KeyboardEventHandler; onKeyDown: KeyboardEventHandler; } & AriaAttributes; //# sourceMappingURL=MultiSelectAnchorParams.d.ts.map