/// <reference types="node" />
/**
 * Strings data serializer.
 */
export default class StringsSerializer {
    protected padded: boolean;
    protected encoding: string;
    /**
     * @param strings Strings dictionary.
     * @param padded Whether to use padded format.
     * @param encoding String encoding.
     */
    constructor(padded?: boolean, encoding?: string);
    /**
     * Serialize strings into data buffer.
     */
    serialize(strings: {
        [id: number]: string;
    }): Buffer;
}
