import * as React from 'react'; interface To { /** * A string representing the path link to */ pathname: string; /** * A string representing the url search to */ search?: string; /** * A string representing the url state to */ state?: object; } export declare type AppLinkProps = { to: string | To; hashType?: boolean; replace?: boolean; message?: string; children?: React.ReactNode; } & React.AnchorHTMLAttributes; declare const AppLink: (props: AppLinkProps) => JSX.Element; export default AppLink;