import { type Value } from "../interface/__internal/schema/Value.js";
import { type List } from "../interface/__internal/schema/List.js";
export * from "./__internal/sync/data_switch.js";
export * as from from "./__internal/transformer/from.js";
export * as literal from "./__internal/sync/literal.js";
import { type Phrase } from "../temp/fountain_pen/phrase.js";
export type Serializer = ($: Input) => string;
export type Serializer_With_Parameter = ($: Input, $p: Parameter) => string;
export declare namespace ph {
const composed: (phrases: Phrase[]) => string;
const list: (list: List) => string;
const literal: (value: string) => string;
const list_of_characters: (list: List) => string;
}