/** @format */
import { InputBuffer } from '../../common/input-buffer.js';
import { OutputBuffer } from '../../common/output-buffer.js';
import { IfdValue } from './ifd-value.js';
import { IfdValueType } from '../ifd-value-type.js';
/**
 * Represents a signed short IFD value.
 */
export declare class IfdSShortValue extends IfdValue {
    /**
     * The internal value stored as an Int16Array.
     */
    private _value;
    /**
     * Gets the type of the IFD value.
     * @returns {IfdValueType} The type of the IFD value.
     */
    get type(): IfdValueType;
    /**
     * Gets the length of the IFD value.
     * @returns {number} The length of the IFD value.
     */
    get length(): number;
    /**
     * Constructs an IfdSShortValue instance.
     * @param {Int16Array | number} value - The initial value.
     */
    constructor(value: Int16Array | number);
    /**
     * Creates an IfdSShortValue from input buffer data.
     * @param {InputBuffer<Uint8Array>} data - The input buffer.
     * @param {number} length - The length of the data.
     * @returns {IfdSShortValue} The created IfdSShortValue instance.
     */
    static data(data: InputBuffer<Uint8Array>, length: number): IfdSShortValue;
    /**
     * Converts the value to an integer.
     * @param {number} [index=0] - The index of the value to convert.
     * @returns {number} The integer value.
     */
    toInt(index?: number): number;
    /**
     * Converts the value to a Uint8Array.
     * @returns {Uint8Array} The Uint8Array representation of the value.
     */
    toData(): Uint8Array;
    /**
     * Writes the value to an output buffer.
     * @param {OutputBuffer} out - The output buffer.
     */
    write(out: OutputBuffer): void;
    /**
     * Sets the value at the specified index.
     * @param {number} v - The value to set.
     * @param {number} [index=0] - The index at which to set the value.
     */
    setInt(v: number, index?: number): void;
    /**
     * Checks if this value is equal to another IFD value.
     * @param {IfdValue} other - The other IFD value.
     * @returns {boolean} True if the values are equal, false otherwise.
     */
    equals(other: IfdValue): boolean;
    /**
     * Clones this IFD value.
     * @returns {IfdValue} The cloned IFD value.
     */
    clone(): IfdValue;
    /**
     * Converts the value to a string representation.
     * @returns {string} The string representation of the value.
     */
    toString(): string;
}
