import { ICustomElement } from 'component-register'; import { JSX } from 'solid-js'; import { BaseRouterProps } from '@solidjs/router'; export declare function hashParser(str: string): string; export type HashRouterProps = BaseRouterProps & { explicitLinks?: boolean; preload?: boolean; ref: HTMLElement & ICustomElement; }; export declare function HashRouter(props: HashRouterProps): JSX.Element;