import { default as React, PropsWithChildren } from 'react'; import { OverlayProps } from '../../atoms/Overlay'; import { QuickOrderDrawerProviderProps } from './provider/QuickOrderDrawerProvider'; export type QuickOrderDrawerProps = { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Controls the state */ isOpen: boolean; /** * Props forwarded to the `Overlay` component. */ overlayProps?: OverlayProps; /** * Props forwarded to the `QuickOrderDrawerProvider` component. */ providerProps?: Omit; }; declare const QuickOrderDrawer: ({ testId, isOpen, overlayProps, providerProps, children, }: PropsWithChildren) => React.JSX.Element; export default QuickOrderDrawer; //# sourceMappingURL=QuickOrderDrawer.d.ts.map