import { UnifiedAppNotification } from "../../interfaces/models/AppNotification";
declare function useFetchAppNotifications(): ({ page, limit }: {
    page: number;
    limit: number;
}) => Promise<UnifiedAppNotification[]>;
export default useFetchAppNotifications;
