import { QuarkElement, Ref } from 'quarkc';
export default class HtmlCode extends QuarkElement {
    isShowSlot: boolean;
    code: string;
    contentRef: Ref<any>;
    componentDidMount(): void;
    handleChange: () => void;
    toggle: () => void;
    render(): any;
}
