import { customInspectSymbol } from '../../../constants/node';
import { TypeSymbols } from '../../constants';
export declare const SepkSignatureLength = 65;
export declare class Signature {
    private readonly sig;
    _type: TypeSymbols;
    constructor(sig: Uint8Array);
    toJSON(): string;
    static fromJSON(jsonStr: string): Signature;
    static fromBytes(bytes: Uint8Array): [Signature, Uint8Array];
    [customInspectSymbol](_: any, options: any): any;
    toString(): string;
    toBytes(): Uint8Array;
}
//# sourceMappingURL=signature.d.ts.map