import { NotificationsStorage } from '@mastra/core/storage';
import type { CreateNotificationInput, ListDueNotificationsInput, ListNotificationsInput, NotificationRecord, UpdateNotificationInput } from '@mastra/core/storage';
import type { LibSQLDomainConfig } from '../../db/index.js';
export declare class NotificationsLibSQL extends NotificationsStorage {
    #private;
    constructor(config: LibSQLDomainConfig);
    init(): Promise<void>;
    dangerouslyClearAll(): Promise<void>;
    createNotification(input: CreateNotificationInput): Promise<NotificationRecord>;
    listNotifications(input: ListNotificationsInput): Promise<NotificationRecord[]>;
    listDueNotifications(input: ListDueNotificationsInput): Promise<NotificationRecord[]>;
    getNotification(input: {
        threadId: string;
        id: string;
    }): Promise<NotificationRecord | null>;
    updateNotification(input: UpdateNotificationInput): Promise<NotificationRecord>;
    private findCoalescable;
}
//# sourceMappingURL=index.d.ts.map