/// declare type Props = { acceptanceTitle: string; cancellationTitle: string; onAcceptance: () => void; onCancellation: () => void; }; /** * * @param props * @constructor */ declare const DialogActions: (props: Props) => JSX.Element; export default DialogActions;