import * as React from 'react'; import { StyledContent } from './DrawerContent'; type TDrawerProviderProps = { position?: React.ComponentProps['position']; }; export declare const DrawerContext: React.Context; export declare const DrawerProvider: ({ position, ...rest }: React.PropsWithChildren) => React.JSX.Element; export {};