export interface IParameter { name: string; type: string; isNullable?: boolean; isArray?: boolean; } export declare const PARAMETER_TYPES: Readonly; export declare const PARAMETER_TYPES_TO_IMPORT: Set; export declare function fixParameterType(type: string): string;