/** * short hand for stopPropagation and preventingDefault * has a union of all possible event types */ declare const preventDefaultBehavior: (evt: React.KeyboardEvent | React.MouseEvent | MouseEvent | KeyboardEvent | TouchEvent) => void; export default preventDefaultBehavior;