import type { App } from "vue";

import Input from "./Input.vue";

import { registerComponent } from "@/utils/plugins";
import type { OrugaComponentPlugin } from "@/utils/config";

/** export input specific types */
export type * from "./props";

/** export input plugin */
export default {
    install(app: App): void {
        registerComponent(app, Input);
    },
} satisfies OrugaComponentPlugin;

/** export input components */
export { Input as OInput };
