import React from 'react'; type Props = { image?: string; alt: string; title: string; children: React.ReactNode; onDownload?: () => void; onOpen?: () => void; kind?: 'primary' | 'secondary' | 'tertiary'; variant?: 'basic' | 'interactive' | 'critical' | 'success'; /** * Changes the size of the button, giving it more or less padding * @default 'medium' */ size?: 'slim' | 'medium' | 'large'; /** * Custom class name for the wrapper */ className?: string; /** * whether the image is loading */ loading?: boolean; props?: { [key: string]: any; }; }; declare const ShareDialog: React.ForwardRefExoticComponent>; export { ShareDialog };