import type { ComponentType, ReactNode } from 'react'; type Order = number; export interface Option { action: Action; icon: ReactNode | ComponentType; text: string; group: string; description: string; keywords?: string[]; suggested?: Order | false; isBeta?: boolean; isNew?: boolean; } export interface ExtensionConfiguration { tooltip?: { placement: 'top' | 'right' | 'bottom' | 'left'; content: ReactNode; }; withSpecificProviderOptions?: boolean; } export {};