import type { BunPlugin } from 'bun'; import type { IslandFramework } from '../../types/island'; type IslandDefinitionLite = { buildReference: { export?: string; source: string; } | null; component: string; framework: IslandFramework; }; export type IslandRegistryTransformInfo = { definitions: IslandDefinitionLite[]; resolvedRegistryPath: string; }; export declare const transformIslandRegistrySource: (source: string, filePath: string, info: IslandRegistryTransformInfo) => string | null; export declare const createIslandRegistryDefinitionPlugin: (info: IslandRegistryTransformInfo) => BunPlugin; export {};