import React from 'react';
import { DrawerProps } from "../../atoms/drawer";
import { LOCALE } from "../../../interfaces/types/Locale";
export type ShareDrawerProps = {
    url: string;
    title?: string;
    onCopied?: VoidFunction;
    onShared?: VoidFunction;
    locale: LOCALE;
} & DrawerProps;
declare const ShareDrawer: React.FC<ShareDrawerProps>;
export { ShareDrawer };
