import { QuarkElement, Ref } from 'quarkc';
export default class DocView extends QuarkElement {
    title: string;
    tocTitle: string;
    isShowAttr: boolean;
    titleRef: Ref<any>;
    handleAttrSlotChange: (e: any) => void;
    render(): any;
}
