import type { QrMode } from "../types/index.js"; export interface Segment { mode: Exclude; data: string; count: number; bytes?: Uint8Array; } /** * Analyzes the input string and splits it into the most appropriate QR modes. * v1: Simple but effective greedy approach. */ export declare function segmentize(input: string): Segment[];