/// <reference types="react" />
export declare type Method = 'push' | 'replace';
export declare type Target = '_blank' | '_self' | '_parent' | '_top' | 'framename';
export interface UpLinkProps {
    path?: string;
    plain?: boolean;
    href?: string;
    label?: string;
    color?: string;
    method?: Method;
    dataFor?: string;
    onClick?: (e: React.MouseEvent<HTMLAnchorElement>) => void;
    target?: Target;
}
