import { FigmaConnectMeta, ConnectedComponent } from '../connect/api'; type MapType = T extends ConnectedComponent ? React.ReactElement : T extends Function ? T : T extends object ? { [K in keyof T]: MapType; } : T extends Array ? MapType[] : T; export type ReactMeta

= FigmaConnectMeta, React.Component | React.ReactElement | string | ((props: any) => React.ReactElement)> & { /** * A list of import statements that will render in the Code Snippet in Figma. * This overrides the auto-generated imports for the component. When this is specified, * the `importPaths` option in the config file is also ignored. */ imports?: string[]; }; export {}; //# sourceMappingURL=types.d.ts.map