/** * Warn consumers in development environment only. * * @param {boolean} condition - The condition that must be met * @param {string} message - The message to display if the condition is met * * @example * devWarning('some string' && 5, 'This message will be printed') */ export declare function devWarning(condition: boolean, message: string): void;