export interface PluginOptions { dtoFileNameSuffix?: string | string[]; controllerFileNameSuffix?: string | string[]; classValidatorShim?: boolean; classTransformerShim?: boolean | 'exclusive'; dtoKeyOfComment?: string; controllerKeyOfComment?: string; introspectComments?: boolean; readonly?: boolean; pathToSource?: string; debug?: boolean; parameterProperties?: boolean; } export declare const mergePluginOptions: (options?: Record) => PluginOptions;