import { AppLayoutInternals, InternalDrawer } from '../interfaces';
interface AppLayoutGlobalDrawerImplementationProps {
  appLayoutInternals: AppLayoutInternals;
  show: boolean;
  activeGlobalDrawer: InternalDrawer | undefined;
}
declare function AppLayoutGlobalDrawerImplementation({
  appLayoutInternals,
  show,
  activeGlobalDrawer
}: AppLayoutGlobalDrawerImplementationProps): JSX.Element;
export default AppLayoutGlobalDrawerImplementation;