import { Ref, ComputedRef } from 'vue'; export interface Point { currentPoint: ComputedRef; isMobile: Ref; isTabletop: Ref; isDesktop: Ref; } export declare const useBreakPoint: () => Point;