import { ParentType, ResolvedType, StringIndexedObject } from "./parser/types.js"; export type Component = { exportName: string; exportType?: "explicit-export" | "inferred-export" | "star-export"; componentPath: string; description: string; tags: StringIndexedObject | null; properties: Record; }; export type ComponentProperty = { defaultValue: string | undefined; name: string; required: boolean; type: ResolvedType; declarations: ParentType[] | undefined; tags: StringIndexedObject | undefined; description: string; }; //# sourceMappingURL=types.d.ts.map