export declare const propertiesStore: import("jotai").PrimitiveAtom & { init: any; }; export type PropertiesStoreType = { current?: string; defaultProps: Record; props: Record; }; export declare const propertiesPropsStore: import("jotai").PrimitiveAtom & { init: PropertiesStoreType; }; export declare const useSetPartialProperties: () => (props: Partial) => void; export declare const useSetProperties: () => (update?: any) => void; export declare const useSetDefaultProps: () => (update: PropertiesStoreType | ((prev: PropertiesStoreType) => PropertiesStoreType)) => void; //# sourceMappingURL=store.d.ts.map