/** * @param { object } props * @param { boolean } [props.confirm] * @param { boolean } [props.modal] * @param { boolean } [props.toaster] * @param { SetupContext } ctx */ declare function Vergil(props: { confirm?: boolean | undefined; modal?: boolean | undefined; toaster?: boolean | undefined; }, { slots }: SetupContext): VNode[] | undefined; declare namespace Vergil { namespace props { let modal: BooleanConstructor; let confirm: BooleanConstructor; let toaster: BooleanConstructor; } } export default Vergil; import type { SetupContext } from 'vue'; import type { VNode } from 'vue'; //# sourceMappingURL=Vergil.d.ts.map