import { DialogActions, DialogInitialState, DialogState } from "../dialog";
export declare type DrawerState = DialogState & {};
export declare type DrawerActions = DialogActions & {};
export declare type DrawerInitialState = DialogInitialState;
export declare type DrawerStateReturn = DrawerState & DrawerActions;
export declare function useDrawerState(props?: DrawerInitialState): DrawerStateReturn;
