import { LangfuseAccessor } from '@struktoai/mirage-core/accessor/langfuse'; import type { RegisteredCommand } from '@struktoai/mirage-core/commands/config'; import type { RegisteredOp } from '@struktoai/mirage-core/ops/registry'; import { BaseResource } from '@struktoai/mirage-core/resource/base'; import type { Resource } from '@struktoai/mirage-core/resource/base'; import { PathSpec } from '@struktoai/mirage-core/types'; import type { FileStat } from '@struktoai/mirage-core/types'; import { type LangfuseConfig, type LangfuseConfigRedacted } from './config.ts'; export interface LangfuseResourceState { type: string; config: LangfuseConfigRedacted; } export declare class LangfuseResource extends BaseResource implements Resource { readonly kind: string; readonly cachesReads: boolean; readonly indexTtl: number; readonly prompt: string; readonly config: LangfuseConfig; readonly accessor: LangfuseAccessor; constructor(config: LangfuseConfig); open(): Promise; commands(): readonly RegisteredCommand[]; ops(): readonly RegisteredOp[]; readFile(p: PathSpec): Promise; readdir(p: PathSpec): Promise; stat(p: PathSpec): Promise; glob(paths: readonly PathSpec[], prefix?: string): Promise; getState(): Promise; loadState(_state: LangfuseResourceState): Promise; } //# sourceMappingURL=langfuse.d.ts.map