import React from 'react'; import { SiteType } from "../../../interfaces/types"; import { LOCALE } from "../../../interfaces/types/Locale"; export type ShareContainerProps = { url: string; onCopied?: VoidFunction; locale: LOCALE; siteType?: SiteType; }; declare const ShareContainer: React.FC; export { ShareContainer };