import { SCEventType } from '@selfcommunity/types';
import { CacheStrategies } from '@selfcommunity/utils';
/**
 :::info
 This custom hook is used to fetch events.
 @param object.cacheStrategy

 :::tip Context can be consumed in this way:

 ```jsx
 const {events, isLoading} = useSCFetchEvents();
 ```
 :::
 * @param props
 */
declare const useSCFetchEvents: (props?: {
    cacheStrategy?: CacheStrategies;
}) => {
    events: SCEventType[];
    isLoading: boolean;
};
export default useSCFetchEvents;
