export declare const ParameterMode: {
    readonly PARAMETER_NAMED: 0;
    readonly PARAMETER_POSITIONAL: 1;
    readonly PARAMETER_NONE: 2;
};
export type ParameterMode = 'PARAMETER_NAMED' | 0 | 'PARAMETER_POSITIONAL' | 1 | 'PARAMETER_NONE' | 2;
export type ParameterMode__Output = typeof ParameterMode[keyof typeof ParameterMode];
