/// export interface SimpleDialogProps { title: string; url: string; description?: JSX.Element; open?: boolean; onClose?: () => void; twitterProps?: any; hideCloseBtn?: boolean; } declare const AutShare: (props: SimpleDialogProps) => JSX.Element; export declare function AutShareDialog(props: SimpleDialogProps): JSX.Element; export default AutShare;