import { NamedFunction0 } from './_Base';
import { Ref } from '@vue/reactivity';
interface lngLat {
    lng: number;
    lat: number;
}
export declare class geolocationCurrentPositionRef extends NamedFunction0 {
    static type(): string;
    func(): Ref<lngLat>;
}
export declare class geolocationLatitude extends NamedFunction0 {
    static type(): string;
    func(): number;
}
export declare class geolocationLongitude extends NamedFunction0 {
    static type(): string;
    func(): number;
}
export declare class geolocationGetCurrentPosition extends NamedFunction0 {
    static type(): string;
    func(): void;
}
export {};
