import type { Value } from '@linaria/tags'; export default function hasLinariaPreval(exports: unknown): exports is { __linariaPreval: Record Value> | null | undefined; } { if (!exports || typeof exports !== 'object') { return false; } return '__linariaPreval' in exports; }