import "f1ux/string/operator/fromBytes";
import Decoder from "../Decoder";
import DecoderContext from "../DecoderContext";
import DecoderResult from "../DecoderResult";
import Type from "../reflect/Type";
declare class StringDecoder implements Decoder<string> {
    decode(type: Type, view: DataView, offset: number, context: DecoderContext): DecoderResult<string>;
}
export default StringDecoder;
