import { Type } from "./Type"; export declare class ProcedureType extends Type { readonly argumentTypes: Type[]; readonly returnType: Type; constructor(argumentTypes: Type[], returnType: Type); equals(otherType: Type): boolean; isAssignableTo(otherType: Type): boolean; toString(): string; }