import { VariableType } from "../../types.js"; /** Render a `raises` clause back to Agency source: `<*>` for the `any` * primitive, otherwise delegate to variableTypeToString, which renders an * effect-set union as `<...>` and a type-alias reference by name. Single * source of truth for rendering a raises clause (AgencyGenerator delegates * here). */ export declare function effectSetToSource(type: VariableType, typeAliases: Record): string; export declare function variableTypeToString(variableType: VariableType, typeAliases: Record, forFormatting?: boolean): string;