//#region src/layout/context.d.ts interface LayoutContextProps { siderHook: { addSider: (id: string) => void; removeSider: (id: string) => void; }; } declare function useLayoutProvider(props: LayoutContextProps): void; declare function useLayoutCtx(): LayoutContextProps; //#endregion export { LayoutContextProps, useLayoutCtx, useLayoutProvider };