/** A concatenation type. */
export type ConcatenationType = "none" | 1 | 2;
/** An array containing all concatenation types. */
export declare const ALL_CONCATENATION_TYPES: readonly ConcatenationType[];
