import * as vue27 from "vue";
import { TemplateRef } from "vue";
import { MaybeComputedElementRef } from "@vueuse/core";

//#region src/composables/use-auto-ratio.d.ts
declare function useAutoRatio(templateRef?: TemplateRef<HTMLElement>, ratio?: number, target?: MaybeComputedElementRef): {
  templateRef: Readonly<vue27.ShallowRef<HTMLElement | null>> | undefined;
  width: vue27.ComputedRef<number>;
  height: vue27.ComputedRef<number>;
};
type UseAutoRatioReturns = ReturnType<typeof useAutoRatio>;
//#endregion
export { UseAutoRatioReturns, useAutoRatio };