import { type DataViewReader } from "./data-view-reader.js"; export interface DayOfWeek { /** *
Format: `uint8`
*Unit: `org.bluetooth.unit.time.day`
*Minimum: 0
*Maximum: 7
* | Key | Description | * | --- | ----------- | * | 1 | Monday | * | 2 | Tuesday | * | 3 | Wednesday | * | 4 | Thursday | * | 5 | Friday | * | 6 | Saturday | * | 7 | Sunday | * */ dayOfWeek: number; } /** @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.day_of_week.xml | Day Of Week} */ export declare class DayOfWeekImpl implements DayOfWeek { static readonly UUID_PREFIX = 10761; static readonly TYPE_NAME = "org.bluetooth.characteristic.day_of_week"; static readonly NAME = "Day of Week"; /** Parse from a DataView into {@link DayOfWeek}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): DayOfWeekImpl; readonly dayOfWeek: number; constructor(dayOfWeek: DayOfWeek); } /** Parse from a DataView into {@link DayOfWeek}. */ export declare function dayOfWeekFromDataView(dataView: DataView | DataViewReader, indexStart?: number): DayOfWeek; //# sourceMappingURL=day-of-week.d.ts.map