import { PbEditorElementTree } from "../../types"; export interface BlockWithContent extends BlockAtomType { content: PbEditorElementTree; } export interface BlockAtomType { id: string; name: string; blockCategory: string; savedOn?: Date; createdBy: { id: string | null; }; } export declare const blockAtom: import("recoil").RecoilState;