/** * This is basically what `atomFamily` from jotai does, * but it doesn't make sense to include the entire jotai library just for that api. */ export declare type InternalFormId = string | symbol; export declare const storeFamily: (create: (formId: InternalFormId) => T) => { (formId: InternalFormId): T; remove(formId: InternalFormId): void; };