export type Config = {
    readonly initialBufferLength: number;
    readonly maxBufferLength: number;
};
export declare function Config({ initialBufferLength, maxBufferLength, }: Partial<Config>): Config;
export declare const DEFAULT_CONFIG: Config;
