import { AlignType } from '../property-setting/align/Align'; type State = { align: AlignType; }; type Actions = { alignStateChange: (align: AlignType) => void; }; declare const useAlignStore: import("zustand").UseBoundStore, "setState"> & { setState(nextStateOrUpdater: (State & Actions) | Partial | ((state: import("immer").WritableDraft) => void), shouldReplace?: boolean | undefined): void; }>; export default useAlignStore;