export declare class RecallBricks {
    static write({ userId, projectId, text, type, tags, baseUrl, }: {
        userId: string;
        projectId: string;
        text: string;
        type: string;
        tags: string[];
        baseUrl?: string;
    }): Promise<any>;
}
