import { ReactNode } from 'react';
import { UseDrawerContext } from './use-drawer-context';
export interface DrawerContextProps {
    children: (context: UseDrawerContext) => ReactNode;
}
export declare const DrawerContext: (props: DrawerContextProps) => ReactNode;
