import { RouteInfo, VersionValue } from "@nestjs/common/interfaces";
export interface INestiaSdkInput {
    controllers: INestiaSdkInput.IController[];
    globalPrefix?: {
        prefix: string;
        exclude?: Array<string | RouteInfo>;
    };
    versioning?: {
        prefix: string;
        defaultVersion?: VersionValue;
    };
}
export declare namespace INestiaSdkInput {
    interface IController {
        class: Function;
        location: string;
        prefixes: string[];
    }
}
