import { BaseHandlerProps } from "./hexclave-handler-client.js"; //#region src/components-page/hexclave-handler.d.ts type HexclaveHandlerProps = BaseHandlerProps & { location?: string; } & { /** * @deprecated The app parameter is no longer necessary. You can safely remove it. */ app?: any; /** * @deprecated The routeProps parameter is no longer necessary. You can safely remove it. */ routeProps?: any; /** * @deprecated The params parameter is no longer necessary. You can safely remove it. */ params?: any; /** * @deprecated The searchParams parameter is no longer necessary. You can safely remove it. */ searchParams?: any; }; declare function HandlerImpl({ app, routeProps, params, searchParams, ...props }: HexclaveHandlerProps): import("react/jsx-runtime").JSX.Element; declare const HexclaveHandler: typeof HandlerImpl; /** @deprecated Use `HexclaveHandler` from the `@hexclave/*` package instead — same symbol, new brand name. See https://docs.hexclave.com/migration. */ declare const StackHandler: typeof HandlerImpl; //#endregion export { HexclaveHandler, StackHandler, StackHandler as default }; //# sourceMappingURL=hexclave-handler.d.ts.map