import { AnyExtension, JSONContent } from '@tiptap/core';
import { IWhiteList } from 'xss';
interface Props {
    value?: string | JSONContent;
    dark?: boolean;
    dense?: boolean;
    markdownTheme?: string | false;
    xss?: boolean | string[];
    xssOptions?: IWhiteList;
    extensions?: AnyExtension[];
}
declare const viewerClass: import('vue').ComputedRef<{
    __dark: boolean;
    dense: boolean;
    view: boolean;
}>;
declare const cleanValue: import('vue').ComputedRef<string>;
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
declare var __VLS_1: {}, __VLS_3: {};
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
    before?: (props: typeof __VLS_1) => any;
} & {
    after?: (props: typeof __VLS_3) => any;
}>;
declare const __VLS_self: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
    value: string;
    dark: undefined;
    dense: boolean;
    markdownTheme: undefined;
    xss: boolean;
    xssOptions: () => IWhiteList;
    extensions: () => never[];
}>, {
    viewerClass: typeof viewerClass;
    cleanValue: typeof cleanValue;
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
    value: string;
    dark: undefined;
    dense: boolean;
    markdownTheme: undefined;
    xss: boolean;
    xssOptions: () => IWhiteList;
    extensions: () => never[];
}>>>, {
    markdownTheme: string | false;
    extensions: AnyExtension[];
    value: string | JSONContent;
    dark: boolean;
    dense: boolean;
    xss: boolean | string[];
    xssOptions: IWhiteList;
}, {}>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
    value: string;
    dark: undefined;
    dense: boolean;
    markdownTheme: undefined;
    xss: boolean;
    xssOptions: () => IWhiteList;
    extensions: () => never[];
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
    value: string;
    dark: undefined;
    dense: boolean;
    markdownTheme: undefined;
    xss: boolean;
    xssOptions: () => IWhiteList;
    extensions: () => never[];
}>>>, {
    markdownTheme: string | false;
    extensions: AnyExtension[];
    value: string | JSONContent;
    dark: boolean;
    dense: boolean;
    xss: boolean | string[];
    xssOptions: IWhiteList;
}, {}>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithDefaults<P, D> = {
    [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
        default: D[K];
    }> : P[K];
};
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToOption<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: import('vue').PropType<T[K]>;
        required: true;
    };
};
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
type __VLS_PrettifyLocal<T> = {
    [K in keyof T]: T[K];
} & {};
