///
import { RenderPropChildren } from '@bluebase/core';
export interface DrawerActionsObject {
openDrawer: () => void;
closeDrawer: () => void;
toggleDrawer: () => void;
}
export interface DrawerActionsProps {
children: RenderPropChildren;
}
/**
* A render prop component to control the DrawerLayout
*/
export declare const DrawerActions: import("react").ComponentType;