import type { DialogProps } from '@mui/material'; import type { ComponentType, ReactNode } from 'react'; import React from 'react'; /** Props for {@link ShareOutDialog}. */ export interface ShareOutDialogProps extends DialogProps { ShareOutDialogActions?: ComponentType<{ onClose?: () => void; }>; cardImg?: ReactNode; shareOutDialogContent?: ReactNode; subtitle?: string; title?: string; } /** Dialog shell for presenting share-out title, subtitle, content, and actions. */ export declare const ShareOutDialog: React.FC; //# sourceMappingURL=Dialog.d.ts.map