import { CSSExports } from "../css/exports"; export type PCExports = { components: Record; style: CSSExports; }; export type ComponentProperty = { name: string; optional: boolean; }; export type ComponentExport = { name: string; properties: Record; public: boolean; };