import type { SetupContext } from 'vue'; import { JSX } from 'vue/jsx-runtime'; export interface IfProps { condition: any; } export declare function If(props: IfProps, ctx: SetupContext): JSX.Element | null;