/**
 * @author Roman Vottner
 * @copyright 2020 Roman Vottner
 * @license Apache-2.0
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
interface Builder {
    build(): Separators;
}
export declare class Separators {
    componentSeparator: string;
    elementSeparator: string;
    decimalSeparator: string;
    releaseIndicator: string | undefined;
    blankSpace: string | undefined;
    segmentTerminator: string;
    segmentTagDelimiter: string | undefined;
    repetitionElementSeparator: string | undefined;
    constructor(componentSeparator: string, elementSeparator: string, decimalSeparator: string | undefined, segmentTerminator: string, releaseIndicator: string | undefined, blankSapce: string | undefined, segmentTagDelimiter: string | undefined, repetitionElementSeparator: string | undefined);
    static escapeIfNeeded(separator: string): string;
}
export declare class EdifactSeparatorsBuilder implements Builder {
    private _componentSeparator;
    private _elementSeparator;
    private _decimalSeparator;
    private _releaseIndicator;
    private _blankSpace;
    private _segmentTerminator;
    componentSeparator(componentSeparator: string): EdifactSeparatorsBuilder;
    elementSeparator(elementSeparator: string): EdifactSeparatorsBuilder;
    decimalSeparator(decimalSeparator: string): EdifactSeparatorsBuilder;
    releaseIndicator(releaseIndicator: string): EdifactSeparatorsBuilder;
    blankSpace(blankSpace: string): EdifactSeparatorsBuilder;
    segmentTerminator(segmentTerminator: string): EdifactSeparatorsBuilder;
    build(): Separators;
}
export declare class TradacomsSeparatorsBuilder implements Builder {
    private _componentSeparator;
    private _elementSeparator;
    private _decimalSeparator;
    private _segmentTagDelimiter;
    private _segmentTerminator;
    componentSeparator(componentSeparator: string): TradacomsSeparatorsBuilder;
    elementSeparator(elementSeparator: string): TradacomsSeparatorsBuilder;
    decimalSeparator(decimalSeparator: string): TradacomsSeparatorsBuilder;
    segmentTagDelimiter(segmentTagDelimiter: string): TradacomsSeparatorsBuilder;
    segmentTerminator(segmentTerminator: string): TradacomsSeparatorsBuilder;
    build(): Separators;
}
export declare class AnsiX12SeparatorsBuilder implements Builder {
    private _componentSeparator;
    private _elementSeparator;
    private _repetitionElementSeparator;
    private _segmentTerminator;
    componentSeparator(componentSeparator: string): AnsiX12SeparatorsBuilder;
    elementSeparator(elementSeparator: string): AnsiX12SeparatorsBuilder;
    repetitionElementSeparator(repetitionElementSeparator: string): AnsiX12SeparatorsBuilder;
    segmentTerminator(segmentTerminator: string): AnsiX12SeparatorsBuilder;
    build(): Separators;
}
export {};
//# sourceMappingURL=separators.d.ts.map