import { default as hooks } from './adapter';
/**
 * 组合使用 Tailwind 的响应性断点状态
 *
 * @example
 * const breakpoint = useBreakpoint()
 * watch(breakpoint.current, (current) => { ...... })
 */
export declare const useBreakpoint: () => {
    current: hooks.Ref<string>;
};
