import type { Ast } from '../../index.js'; import type { ITokenStream } from '../streams/token-stream.js'; import type { TypeParam } from '../../node.js'; /** * ```abnf * Type = FnType / NamedType * ``` */ export declare function parseType(s: ITokenStream): Ast.TypeSource; /** * ```abnf * TypeParams = "<" TypeParam *(SEP TypeParam) [SEP] ">" * ``` */ export declare function parseTypeParams(s: ITokenStream): TypeParam[]; //# sourceMappingURL=types.d.ts.map