import type { AdaptableOptions } from '@adaptabletools/adaptable/types'; export interface NoCodePluginOptions { modules?: any[]; onInit?: (adaptableOptions: AdaptableOptions) => void | Promise; headerMessage?: React.ReactNode; actionMessage?: React.ReactNode; dropActionMessage?: React.ReactNode; loadingMessage?: React.ReactNode; theme?: 'dark' | 'light'; fetchData?: () => Promise; showFetchDataWizard?: boolean; skipToWizard?: boolean; }