import { ConnectionOptions, Connection } from '../orm'; export declare const InjectConnection: (connnection?: Connection | ConnectionOptions | string) => ParameterDecorator; export declare const InjectModel: (entity: Function) => (target: object, key: string | symbol, index?: number) => void; export declare const InjectRepository: (entity: Function) => (target: object, key: string | symbol, index?: number) => void;