import { ISiDataType, ISiStorageData, ValueFromStringError } from './interfaces'; import { SiDataType } from './SiDataType'; export declare class SiBool extends SiDataType implements ISiDataType { private byteOffset; private bitOffset; constructor(byteOffset: number, bitOffset?: number); typeSpecificIsValueValid(_value: boolean): boolean; typeSpecificValueToString(value: boolean): string; typeSpecificValueFromString(string: string): boolean | ValueFromStringError; typeSpecificExtractFromData(data: ISiStorageData): boolean | undefined; typeSpecificUpdateData(data: ISiStorageData, newValue: boolean): ISiStorageData; } //# sourceMappingURL=SiBool.d.ts.map