import type { ImgHTMLAttributes } from 'vue'; import type { BaseImageProps } from '../utils/props.js'; import type { ConfiguredImageProviders, ProviderDefaults } from '@nuxt/image'; export interface PictureProps extends BaseImageProps { legacyFormat?: string; imgAttrs?: ImgHTMLAttributes; } export interface DefaultSlotProps { imgAttrs: ImgHTMLAttributes; isLoaded: boolean; src?: string; } declare const __VLS_export: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & __VLS_EmitsToProps<__VLS_NormalizeEmits<{ (event: "load", payload: Event): unknown; (event: "error", payload: string | Event): unknown; }>>> & import("vue").PublicProps; expose: (exposed: {}) => void; attrs: any; slots: { default(props: DefaultSlotProps): any; }; emit: { (event: "load", payload: Event): unknown; (event: "error", payload: string | Event): unknown; }; }>) => import("vue").VNode & { __ctx?: Awaited; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal = { [K in keyof T as K]: T[K]; } & {};