@codecademy/gamut

73.6.173.6.2-alpha.3e37cd.0
dist/Flyout/index.d.ts
~dist/Flyout/index.d.tsModified
+2−1
Index: package/dist/Flyout/index.d.ts
===================================================================
--- package/dist/Flyout/index.d.ts
+++ package/dist/Flyout/index.d.ts
@@ -1,8 +1,9 @@
 import { Colors } from '@codecademy/gamut-styles';
+import { ComponentPropsWithoutRef } from 'react';
 import * as React from 'react';
 import { WithChildrenProp } from '../utils';
-export interface FlyoutProps extends WithChildrenProp {
+export interface FlyoutProps extends WithChildrenProp, Omit<ComponentPropsWithoutRef<'div'>, 'children' | 'title'> {
     /**
      * Accessibility label for the close button.
      */
     closeLabel: string;