@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 470 B
TypeScript
import React from 'react';
import { LOCALE } from "../../../../interfaces/types";
export declare const LightboxFields: ({ listBlockAdded, popupId, locale, hasSubmitBtn, isSubmitLoading, disabledButtonSubmit, }: {
listBlockAdded: any[];
popupId?: string;
locale: LOCALE;
onClose?: () => void;
onOtherSubmit?: () => void;
hasSubmitBtn?: boolean;
isSubmitLoading: boolean;
disabledButtonSubmit: boolean;
}) => React.JSX.Element;