import { type FrontComponentManifest } from 'twenty-shared/application'; export type FrontComponentType = React.ComponentType; export type FrontComponentConfig = Omit< FrontComponentManifest, 'sourceComponentPath' | 'builtComponentPath' | 'componentName' > & { name?: string; description?: string; component: FrontComponentType; };