import { Container } from '@kites/core'; import { ControllerMetadata, ControllerMethodMetadata, ControllerParameterMetadata } from './interfaces'; declare function GetControllersFromContainer(container: Container, forceControllers: boolean): unknown; declare function GetControllersFromMetadata(): any[]; declare function GetControllerMetadata(constructor: any): ControllerMetadata; declare function GetControllerMethodMetadata(constructor: any): ControllerMethodMetadata[]; declare function GetControllerParameterMetadata(constructor: any): ControllerParameterMetadata; declare function CleanUpMetadata(): void; export { GetControllersFromContainer, GetControllersFromMetadata, GetControllerMetadata, GetControllerMethodMetadata, GetControllerParameterMetadata, CleanUpMetadata, };