declare const useCoreOptions: ({ state, dispatch, props, bodyRef }: {
    state: any;
    dispatch: any;
    props: any;
    bodyRef: any;
}) => {
    CoreMethods: {
        getIsVideo: (url: any) => boolean;
        setTransform: (type: any) => void;
        beforeChange: (from: any, currentIndex: any) => void;
        afterChange: (currentIndex: any) => void;
    };
    RefMethods: {
        getState: () => any;
        slickGoTo: (currentIndex: any) => void;
        slickNext: () => void;
        slickPrev: () => void;
    };
};
export default useCoreOptions;
