export type ComponentPropContract = { attribute: string; prop: string; type?: string; reflect?: boolean; }; export type ComponentContract = { name: string; tag: string; componentKey: string; props: ComponentPropContract[]; events: string[]; slots: string[]; parts: string[]; }; export type ComponentContracts = { generatedAt: string; components: ComponentContract[]; }; //# sourceMappingURL=types.d.ts.map