import { BoxItem } from '@/box/interface'; import { TemplateItem } from '@/template/interface'; import React from 'react'; export interface AppModuleCheckListProps { visible?: boolean; template?: TemplateItem; boxItems?: BoxItem[]; onOk?: (items: string[]) => void; onCancel?: () => void; } export declare const AppModuleCheckList: React.FC;