import { useDisclosure } from "@mantine/hooks";
export type AppShellContextType = {
    sidebar: {
        open: boolean;
        handler: ReturnType<typeof useDisclosure>[1];
    };
};
export declare function AppShellProvider({ children }: {
    children: any;
}): import("react/jsx-runtime").JSX.Element;
export declare function useAppShell(): AppShellContextType;
