import type { PropsWithChildren, ReactElement } from 'react';
interface LinkProps {
    to: string;
    className?: string;
    id?: string;
    'aria-label'?: string;
}
interface LinkToFieldProps {
    to?: string;
    className?: string;
}
interface ShareLinkProps extends LinkProps {
    ariaLabel?: string;
    isActive?: boolean;
}
export declare function ShareLink(props: ShareLinkProps): ReactElement;
export declare const LinkToField: ({ to, className, }: PropsWithChildren<LinkToFieldProps>) => ReactElement | null;
export {};
