interface Check { title: string; value: any; error: boolean; reason: string; } /** * props of Valid Check Dialog * * @param {boolean} open * @param {(open: boolean) => void} setOpen * @param {Check[]} checkList * @param {string} buttonText * @param {() => void} buttonClick * @param {number} [maxPanelRows] */ interface Props { open: boolean; setOpen: (open: boolean) => void; checkList: Check[]; buttonText: string; buttonClick: () => void; maxPanelRows?: number; } declare const TemplatesFunctionalComponentsValidCheckDialog: (props: Props) => import("react/jsx-runtime").JSX.Element; export default TemplatesFunctionalComponentsValidCheckDialog; //# sourceMappingURL=ValidCheckDialog.code.except.d.ts.map