import type * as React from 'react'; /** * Coordinates the drawers under it, so the app behind them can react to one * opening. * Doesn't render its own element. * * Put it at the root of the app, above both the drawers and the * `Drawer.Indent` that wraps your UI. It is optional: a drawer without one works * exactly the same, it just has nothing to indent. */ export declare function DrawerProvider(props: DrawerProvider.Props): React.JSX.Element; export interface DrawerProviderProps { children?: React.ReactNode; } export declare namespace DrawerProvider { type Props = DrawerProviderProps; } //# sourceMappingURL=DrawerProvider.d.ts.map