import { IClass, IStore, Kernel } from "oly-core"; /** * Create custom kernel. * * @param kernel Kernel to use */ export declare const run: (kernel: IStore | Kernel) => (target: IClass) => void; /** * Generate "it('message', () => { })". * * @param name Test message * @param propertyKey Internal decorator stuff */ export declare const check: (name?: any, propertyKey?: string | undefined) => any; /** * @param name Test message * @param propertyKey Internal decorator stuff */ export declare const skip: (name?: any, propertyKey?: string | undefined) => any; /** * @alias */ export declare const test: (name?: any, propertyKey?: string | undefined) => any; /** * @alias */ export declare const spec: (name?: any, propertyKey?: string | undefined) => any;