declare const titleState: import("jotai").PrimitiveAtom & { init: string | undefined; }; declare const columnsState: import("jotai").PrimitiveAtom & { init: string[] | undefined; }; declare const distinctState: import("jotai").PrimitiveAtom<((arg: string) => Promise) | undefined> & { init: ((arg: string) => Promise) | undefined; }; export { titleState, columnsState, distinctState };