/** * Logs only in development. Use for mock flows (export, submit) instead of * raw `console.log`. Bundlers replace `process.env.NODE_ENV` at build time, * so the call site disappears entirely in production bundles. */ declare function devLog(...args: unknown[]): void; export { devLog };