export declare class ClientIssuesConfiguration { id: number; clientId: number; issueTypeId: number; dismissed?: boolean; /** * Per-account threshold for the issue type identified by `issueTypeId`. * Issue-type-agnostic: the unit/meaning is defined by the issue type * (e.g. battery % for LowBattery). NULL falls back to the per-type default. */ thresholdValue?: number | null; createdAt: Date; modifiedAt: Date; }