bootstrap-vue-next
Version:
Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development
33 lines (32 loc) • 1.29 kB
text/typescript
import { BOtpInputProps } from '../../types';
type __VLS_Props = Omit<BOtpInputProps, 'modelValue'>;
type __VLS_PublicProps = {
modelValue?: BOtpInputProps['modelValue'];
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: string[] | null | undefined) => any;
complete: (value: string[]) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: ((value: string[] | null | undefined) => any) | undefined;
onComplete?: ((value: string[]) => any) | undefined;
}>, {
disabled: boolean;
ariaInvalid: import('../..').AriaInvalid;
autofocus: boolean;
form: string;
id: string;
name: string;
placeholder: string;
plaintext: boolean;
readonly: boolean;
required: boolean;
size: import('../..').Size;
state: import('../..').ValidationState;
type: "text" | "number";
length: import('../../types/CommonTypes').Numberish;
mask: boolean;
dir: "ltr" | "rtl";
ariaLabel: string;
otp: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;