import { Component, VNode, VNodeProps } from 'vue-demi';
interface Options extends VNodeProps {
    class?: string;
    domProps?: VNodeProps;
    on?: Record<string, () => void>;
    props?: VNodeProps;
    style?: string;
    'aria-hidden'?: string;
}
/**
 * hDemi function.
 */
export default function h(type: string | Component, options?: Options, children?: VNode | VNode[] | null): VNode;
export declare const slot: (defaultSlots: (() => VNode[]) | VNode[] | undefined) => VNode[];
export {};
