import { PropType, SlotsType } from 'vue';
import { YMapDefaultMarker } from '@yandex/ymaps3-types/packages/markers';
import { DefaultMarkerCustomProps } from '@yandex/ymaps3-types/packages/markers/YMapDefaultMarker';
type Settings = ConstructorParameters<typeof YMapDefaultMarker>[0];
export type YandexMapDefaultMarkerSettings = Omit<Settings, 'popup'> & {
    popup?: Omit<NonNullable<DefaultMarkerCustomProps['popup']>, 'content'> & {
        content?: NonNullable<DefaultMarkerCustomProps['popup']>['content'];
    };
};
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    value: {
        type: PropType<YMapDefaultMarker | null>;
        default: null;
    };
    modelValue: {
        type: PropType<YMapDefaultMarker | null>;
        default: null;
    };
    settings: {
        type: PropType<YandexMapDefaultMarkerSettings>;
        required: true;
    };
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
    [key: string]: any;
}> | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    input(item: YMapDefaultMarker): boolean;
    'update:modelValue'(item: YMapDefaultMarker): boolean;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    value: {
        type: PropType<YMapDefaultMarker | null>;
        default: null;
    };
    modelValue: {
        type: PropType<YMapDefaultMarker | null>;
        default: null;
    };
    settings: {
        type: PropType<YandexMapDefaultMarkerSettings>;
        required: true;
    };
}>> & Readonly<{
    onInput?: ((item: YMapDefaultMarker) => any) | undefined;
    "onUpdate:modelValue"?: ((item: YMapDefaultMarker) => any) | undefined;
}>, {
    value: YMapDefaultMarker | null;
    modelValue: YMapDefaultMarker | null;
}, SlotsType<{
    popup: {
        close: () => void;
    };
}>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export default _default;
