export declare function useMobile(mobilePoint?: 'md' | 'sm' | 'lg' | 'xl' | 'xs'): {
    isMobile: boolean;
    mobileSize: string;
};
