declare const useCoreOptions: ({ state, dispatch, props }: {
state: any;
dispatch: any;
props: any;
}) => {
CoreMethds: {
setTransform: (obj: any) => void;
getCropImageAsync: () => Promise<any>;
};
RefMethods: {
imgURL: string;
};
};
export default useCoreOptions;