import type { UseDrawerInnerReturnType, UseDrawerReturnType } from './typing';
/**
 * @description: Applicable to separate drawer and call outside
 */
export declare function useDrawer(): UseDrawerReturnType;
export declare const useDrawerInner: (callbackFn?: ((...arg: any[]) => any) | undefined) => UseDrawerInnerReturnType;
