import { FormatLike, TypeLike, ParameterLike } from '../types.d.mts'; export declare const getTypeName: (s: string) => string; export declare const getAttributeName: (s: string) => string; export declare const getAttributeArgs: (s: string) => string | null; export declare const toTypeString: (t: TypeLike) => string; export declare const toTypeArgs: (t: ParameterLike[]) => string[]; export declare const toTypeSymbol: (t: TypeLike) => FormatLike;