type BuiltinTypes = "boolean" | "number" | "string" | "void" | "any" | "Promise";
export declare function isBuiltinType(potentialType: string): potentialType is BuiltinTypes;
export declare function isReservedName(potentialName: string): boolean;
export {};
