///
import { WithThemeProps } from '../../../Common/theming';
export declare type Method = 'push' | 'replace';
export declare type Target = '_blank' | '_self' | '_parent' | '_top' | 'framename';
export interface UpLinkProps extends WithThemeProps {
path?: string;
plain?: boolean;
href?: string;
label?: string;
color?: string;
method?: Method;
dataFor?: string;
onClick?: (e: React.MouseEvent) => void;
target?: Target;
}