import type { Operation } from '@apollo/client/core'; /** * Helper to determine whether an operation is client-side-only * * ```haskell * isClientOperation :: Operation -> Bool * ``` * * @param operation Operation to check * @return Whether the operation is client-side-only, i.e. true when the Operation will make no network calls. */ export declare function isClientOperation(operation: Operation): boolean;