UNPKG

@fluido/react-components

Version:
10 lines (9 loc) 265 B
/// <reference types="react" /> interface DialogActionsProps { actions: { [key: string]: VoidFunction; }; onClose?: VoidFunction; } declare const DialogActions: React.FunctionComponent<DialogActionsProps>; export default DialogActions;