import { YgbLogDestination } from '../types/ygb-types'; interface LogWarnOptions { message?: string; destination?: YgbLogDestination; context?: boolean; } export declare function LogWarn(options?: LogWarnOptions): (target: object, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; export {};