import React from "react"; export interface CiIsProps { children: React.ReactNode; } /** * Conditionally renders children when running in a CI environment. * Uses the `ci-info` library to detect CI environments. */ export declare const CiIs: React.FC; /** * Conditionally renders children when NOT running in a CI environment. * Uses the `ci-info` library to detect CI environments. */ export declare const CiIsNot: React.FC;