import { default as ImageWMS, Options } from 'ol/source/ImageWMS';
import { Ref, DefineComponent, ShallowRef, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
import { default as ImageLayer } from 'ol/layer/Image';
import { Projection } from 'ol/proj';
import { ServerType } from 'ol/source/wms';

declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Options & {
    layers: string | unknown[];
    styles?: string | unknown[];
    time?: string;
    capabilitiesUrl?: string;
    parseCapabilitiesToOptions?: (capabilities: Record<string, any>) => Options;
}>, {
    projection: string;
    reprojectionErrorThreshold: number;
    format: string;
    version: string;
    serverType: string;
    styles: string;
    ratio: number;
}>, {
    layer: Ref<ImageLayer<ImageWMS>> | null | undefined;
    source: ShallowRef<ImageWMS>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Options & {
    layers: string | unknown[];
    styles?: string | unknown[];
    time?: string;
    capabilitiesUrl?: string;
    parseCapabilitiesToOptions?: (capabilities: Record<string, any>) => Options;
}>, {
    projection: string;
    reprojectionErrorThreshold: number;
    format: string;
    version: string;
    serverType: string;
    styles: string;
    ratio: number;
}>>>, {
    styles: string | unknown[];
    projection: string | Projection;
    ratio: number;
    serverType: ServerType;
}, {}>;
export default _default;
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToRuntimeProps<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: PropType<T[K]>;
        required: true;
    };
};
type __VLS_WithDefaults<P, D> = {
    [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
        default: D[K];
    }> : P[K];
};
type __VLS_Prettify<T> = {
    [K in keyof T]: T[K];
} & {};
