declare const useCoreOptions: ({ state, dispatch, props }: {
    state: any;
    dispatch: any;
    props: any;
}) => {
    CoreMethods: {
        onOpen: () => void;
        onClose: () => void;
    };
    RefMethods: {
        getState: () => any;
        onUpdate: (rest?: {}) => void;
    };
};
export default useCoreOptions;
