@undp/carbon-library 1.0.135-ghg-inventory.1 → 1.0.135-ghg-inventory.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,13 @@
1
+ import { FC } from "react";
2
+ import "../../../Styles/app.scss";
3
+ export interface UserActionProps {
4
+ t: any;
5
+ actionInfo: any;
6
+ onActionConfirmed: any;
7
+ onActionCanceled: any;
8
+ openModal: any;
9
+ errorMsg: any;
10
+ loading: any;
11
+ }
12
+ declare const GHGUserActionConfirmationModel: FC<UserActionProps>;
13
+ export default GHGUserActionConfirmationModel;