import { o as TAsComponentProps } from "./types-nuUi10Kl.mjs"; import * as vue from "vue"; //#region src/components/defaults/as-action.vue.d.ts type __VLS_Props = TAsComponentProps & { /** * Text rendered before the action link, e.g. "Already have an account?". * Supplied via `@ui.form.attr 'text', '...'` (attrs flow onto the component * as props). */ text?: string; /** * Horizontal alignment of the action row. Supplied via * `@ui.form.attr 'align', 'left' | 'center' | 'right'`. Defaults to left. */ align?: "left" | "center" | "right"; }; declare const __VLS_export: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & { action: (name: string) => any; }, string, vue.PublicProps, Readonly<__VLS_Props> & Readonly<{ onAction?: ((name: string) => any) | undefined; }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; //#endregion export { _default as t };