/// <reference types="node" />
import { DtmfBufferGenerator } from "./DtmfBufferGenerator";
export declare class UlawDtmfBufferGenerator implements DtmfBufferGenerator {
    private static readonly DEFAULT_RAW_BASE_PATH;
    private readonly paths;
    private readonly rawCache;
    constructor(rawFilesBasePath?: string);
    private initiatePathsToRawFiles;
    generate(digits: string): Buffer;
    private getRawBuffer;
}
