import { Model } from "../model"; import { Notifications } from "../models/ui/notifications"; import type * as p from "../core/properties"; export declare namespace DocumentConfig { type Attrs = p.AttrsOf; type Props = Model.Props & { reconnect_session: p.Property; notify_connection_status: p.Property; notifications: p.Property; }; } export interface DocumentConfig extends DocumentConfig.Attrs { } export declare class DocumentConfig extends Model { properties: DocumentConfig.Props; constructor(attrs?: Partial); } //# sourceMappingURL=config.d.ts.map