import { type ImageSourcePropType } from 'react-native'; import type { PAM_ConfigParams, PAM_LottieLoadingParams, PAM_NativeAssetSource, PAM_ToastParams } from './ProgressAndModal.nitro'; export type { PAM_ConfigParams, PAM_LottieLoadingParams, PAM_NativeAssetSource, PAM_ToastParams }; export type PAM_LottieParams = Omit & { lottie: ImageSourcePropType | any; }; /** Hiện spinner loading ở giữa màn hình */ export declare const showLoading: () => void; /** Ẩn spinner loading */ export declare const hideLoading: () => void; /** Ẩn spinner loading, bất kể có bao nhiêu lần showLoading được gọi */ export declare const forceHideLoading: () => void; /** Hiện Lottie animation ở giữa màn hình */ export declare const showLottie: (params: PAM_LottieParams) => void; /** Ẩn Lottie animation với done animation rồi tự động đóng */ export declare const hideLottie: (params: PAM_LottieParams) => void; export declare const showToast: (params: Omit & { image?: ImageSourcePropType | any; }) => void; export declare const configure: (params: PAM_ConfigParams) => void; //# sourceMappingURL=index.d.ts.map