import type { ButtonExProps } from '@ariestools/sdk-react/button'; import type { PopoverProps } from '@mui/material'; import React from 'react'; /** Props for {@link ShareButton}. */ export type ShareButtonProps = ButtonExProps & { prepared?: boolean; shareLink?: string; slot?: { popover?: PopoverProps; }; }; /** Compact share button that opens a popover with X and Facebook share links. */ export declare const ShareButton: React.FC; //# sourceMappingURL=ShareButton.d.ts.map