import type { LinkProps } from '../types';
export declare function pickLinkProps(link: LinkProps & {
    ariaLabel?: string;
    title?: string;
}): {
    replace: any;
    type: any;
    title: any;
    active: any;
    activeClass: any;
    ariaCurrentValue: any;
    ariaLabel: any;
    as: any;
    disabled: any;
    exact: any;
    exactActiveClass: any;
    exactHash: any;
    exactQuery: any;
    external: any;
    href: any;
    inactiveClass: any;
    noPrefetch: any;
    noRel: any;
    prefetch: any;
    prefetchedClass: any;
    rel: any;
    target: any;
    to: any;
};
