interface ConvexClientConfig { url: string; apiKey: string; } export declare class StickyRiceClient { private convexUrl; private apiKey; private userId; private httpUrl; constructor(config: ConvexClientConfig); authenticate(): Promise; getUserId(): string; query(fn: string, args?: Record): Promise; mutation(fn: string, args?: Record): Promise; } export declare function createClient(convexUrl: string, apiKey: string): StickyRiceClient; export {}; //# sourceMappingURL=convex-client.d.ts.map