/** * @param {import("../parse.js").State} state * @returns {{ node: UnaryOperation | BinaryOperation; end: number }} */ export default function prefix(state: import("../parse.js").State): { node: UnaryOperation | BinaryOperation; end: number; }; export type Token = import("../../tokenizer/index.js").Token; export type Node = import("../index.js").Node; export type UnaryOperation = import("../index.js").UnaryOperation; export type BinaryOperation = import("../index.js").BinaryOperation; export type State = import("../parse.js").State; //# sourceMappingURL=prefix.d.ts.map