import * as React from 'react';
export interface IProps {
    href?: string;
    children?: React.ReactNode;
    target?: string;
    isType?: string;
    query?: any;
    className?: string;
    css?: string | Object;
    title?: string;
    alt?: string;
    prefetch?: boolean;
    onClick?: (any?: any) => any;
    router: {
        pathname: string;
    };
    isActiveRoute?: boolean;
    routerProvider?: any;
    route?: string;
    params?: any;
}
declare const _default: React.ComponentType<Pick<IProps, "title" | "className" | "target" | "href" | "children" | "onClick" | "alt" | "isType" | "isActiveRoute" | "query" | "prefetch" | "routerProvider" | "route" | "params" | "css">>;
export default _default;
