import { PortableSchema } from '../schema'; /** @public */ export interface Extension { $$type: '@backstage/Extension'; readonly id: string; readonly attachTo: { id: string; input: string; }; readonly disabled: boolean; readonly configSchema?: PortableSchema; }