import type { PropsWithChildren, ReactElement } from 'react'; type ShareLinkProps = { to: string; className?: string; security?: boolean; id?: string; 'aria-label'?: string; }; export declare function Link(props: PropsWithChildren): ReactElement | null; export declare const StyledShareLink: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit & Partial>> & string & Omit>; export declare function ShareLink(props: PropsWithChildren): ReactElement; export {};