import { t as types_d_exports$1 } from "./types-ULbwkOQm.js"; import "@kubb/react-fabric/globals"; //#region ../core/src/fs/types.d.ts type BasePath = `${T}/`; type Import = { /** * Import name to be used * @example ["useState"] * @example "React" */ name: string | Array; /** * Path for the import * @example '@kubb/core' */ path: string; /** * Add `type` prefix to the import, this will result in: `import type { Type } from './path'`. */ isTypeOnly?: boolean; isNameSpace?: boolean; /** * When root is set it will get the path with relative getRelativePath(root, path). */ root?: string; }; type Source = { name?: string; value?: string; isTypeOnly?: boolean; /** * Has const or type 'export' * @default false */ isExportable?: boolean; /** * When set, barrel generation will add this * @default false */ isIndexable?: boolean; }; type Export = { /** * Export name to be used. * @example ["useState"] * @example "React" */ name?: string | Array; /** * Path for the import. * @example '@kubb/core' */ path: string; /** * Add `type` prefix to the export, this will result in: `export type { Type } from './path'`. */ isTypeOnly?: boolean; /** * Make it possible to override the name, this will result in: `export * as aliasName from './path'`. */ asAlias?: boolean; }; /** * Name to be used to dynamicly create the baseName(based on input.path) * Based on UNIX basename * @link https://nodejs.org/api/path.html#pathbasenamepath-suffix */ type BaseName = `${string}.${string}`; /** * Path will be full qualified path to a specified file */ type Path = string; type AdvancedPath = `${BasePath}${T}`; type File = { /** * Name to be used to create the path * Based on UNIX basename, `${name}.extname` * @link https://nodejs.org/api/path.html#pathbasenamepath-suffix */ baseName: BaseName; /** * Path will be full qualified path to a specified file */ path: AdvancedPath | Path; sources: Array; imports?: Array; exports?: Array; /** * Use extra meta, this is getting used to generate the barrel/index files. */ meta?: TMeta; banner?: string; footer?: string; }; //#endregion //#region src/globals.d.ts declare module '@kubb/react/jsx-runtime' { namespace JSX { interface IntrinsicElements { 'kubb-text': { children?: types_d_exports$1.KubbNode; }; 'kubb-file': { id?: string; children?: types_d_exports$1.KubbNode; baseName: string; path: string; override?: boolean; meta?: File['meta']; }; 'kubb-source': Source & { children?: types_d_exports$1.KubbNode; }; 'kubb-import': Import; 'kubb-export': Export; br: React.DetailedHTMLProps, HTMLBRElement>; } } } //# sourceMappingURL=globals-Cyv9c3lH.d.ts.map