import { GS1Element } from './types.js'; import { ValidationOptions } from './element.js'; export declare const GS = "\u001D"; export interface ParseRawOptions extends ValidationOptions { fnc1?: string; } export declare function parseElementString(input: string, options?: ValidationOptions): GS1Element[]; export declare function parseRawString(input: string, options?: ParseRawOptions): GS1Element[]; export declare function parse(input: string, options?: ParseRawOptions): GS1Element[]; export declare function toRecord(elements: GS1Element[]): Record;