import { Type } from "./type"; export declare class Parameter { private _identifier; private _type; private _optional; private _defaultInitializer; identifier: string; type: Type; optional: boolean; defaultInitializer: string; constructor(identifier: string); }