import type { Ref, UnwrapRef } from 'vue';
export interface Laze<T extends HTMLElement> {
    ref: Ref<UnwrapRef<T> | null>;
    visible: Ref<boolean>;
}
export interface LazeOptions {
    refresh?: boolean | Ref<boolean>;
}
export default function useLaze<T extends HTMLElement>(options?: LazeOptions): Laze<T>;
//# sourceMappingURL=useLaze.d.ts.map