import { AllowedComponentProps } from 'vue'; import { App } from 'vue'; import { Component } from 'vue'; import { ComponentCustomProps } from 'vue'; import { ComponentOptionsBase } from 'vue'; import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { ComputedRef } from 'vue'; import { CreateComponentPublicInstanceWithMixins } from 'vue'; import { DefineComponent } from 'vue'; import { DefineSetupFnComponent } from 'vue'; import { DialogCloseProps } from 'reka-ui'; import { DialogContentProps } from 'reka-ui'; import { DialogDescriptionProps } from 'reka-ui'; import { DialogRootProps } from 'reka-ui'; import { DialogTitleProps } from 'reka-ui'; import { DialogTriggerProps } from 'reka-ui'; import { ExtractPropTypes } from 'vue'; import { FocusOutsideEvent } from 'reka-ui'; import { GlobalComponents } from 'vue'; import { GlobalDirectives } from 'vue'; import { HTMLAttributes } from 'vue'; import { PointerDownOutsideEvent } from 'reka-ui'; import { PopoverContentProps } from 'reka-ui'; import { PopoverRootProps } from 'reka-ui'; import { PopoverTriggerProps } from 'reka-ui'; import { PublicProps } from 'vue'; import { Ref } from 'vue'; import { SchemeColor } from '../types/scheme-colors'; import { SchemeColor as SchemeColor_2 } from '../../types/scheme-colors'; import { TabsContentProps } from 'reka-ui'; import { TabsListProps } from 'reka-ui'; import { TabsRootProps } from 'reka-ui'; import { TabsTriggerProps } from 'reka-ui'; import { TooltipContentProps } from 'reka-ui'; import { VNodeNormalizedChildren } from 'vue'; import { VNodeProps } from 'vue'; declare interface AudioTranscriptionButtonProps { active: boolean; enableGenerateTranscription: boolean; transcriptionTooltipText: string; } declare interface AvatarIconProps { enabled?: boolean; icon?: string; size?: AvatarIconSize; scheme?: SchemeColor; filled?: boolean; opacity?: boolean; } declare type AvatarIconSize = 'nano' | 'xs' | 'sm' | 'lg' | 'xl'; declare interface BreadcrumbItem { name: string; } declare interface BreadcrumbProps { crumbs?: BreadcrumbItem[] | null; } declare interface ButtonProps { size?: ButtonSize; text?: string; type?: ButtonType; float?: boolean; iconLeft?: string; iconRight?: string; iconCenter?: string; iconsFilled?: boolean; disabled?: boolean; loading?: boolean; pressed?: boolean; } declare type ButtonSize = 'small' | 'large' | 'extra-large'; declare type ButtonType = 'primary' | 'secondary' | 'tertiary' | 'warning' | 'attention'; declare interface CheckboxGroupProps { state?: 'horizontal' | 'vertical'; label?: string; labelTooltip?: TooltipProps; helper?: string; } declare interface CheckboxProps { modelValue?: CheckboxValue; disabled?: boolean; label?: string; helper?: string; textRight?: string; } declare type CheckboxValue = boolean | 'less'; declare interface ChipProps { isSelected?: boolean; text?: string; count?: number; type: 'single' | 'multiple'; isClickable?: boolean; onClick?: (event: Event) => void; } export declare const components: ComponentsMap; export declare interface ComponentsMap { [key: string]: VueComponent | Function; } declare interface DateCell { properties: DateCellProperty[]; date?: string | number; toString: () => string; } declare type DateCellProperty = 'inside month' | 'out of range' | 'selected' | 'left-highlighted' | 'right-highlighted' | 'highlighted' | 'today' | string; declare interface DatePickerProps { initialStartDate?: string; initialEndDate?: string; minDate?: string; maxDate?: string; periodBaseDate?: string; equivalentOption?: string; type?: 'day' | 'month' | 'year'; size?: 'small' | 'large'; clearLabel?: string; actionLabel?: string; months?: string[]; days?: string[]; options?: PeriodOption[]; disableClear?: boolean; hideOptions?: boolean; locale?: string; translations?: DatePickerTranslations; variant?: 'card' | 'popover'; } declare type DatePickerTranslations = Record>; declare interface DisclaimerProps { title?: string; description?: string; type?: DisclaimerType; icon?: string | undefined; iconColor?: SchemeColor_2 | undefined; } declare type DisclaimerType = 'informational' | 'success' | 'attention' | 'error' | 'neutral'; /** * Self-contained props type that mirrors `vaul-vue`'s `DrawerRootProps`. * * We intentionally avoid extending or intersecting `DrawerRootProps` because * its definition includes the internal, non-exported `WithoutFadeFromProps` * type, which breaks `vite-plugin-dts` declaration rollup with TS4023 when * combined with our extra `lazyMount` / `unmountDelay` props. */ declare interface DrawerRootProps { activeSnapPoint?: number | string | null; closeThreshold?: number; shouldScaleBackground?: boolean; setBackgroundColorOnScale?: boolean; scrollLockTimeout?: number; fixed?: boolean; dismissible?: boolean; modal?: boolean; open?: boolean; defaultOpen?: boolean; nested?: boolean; direction?: 'top' | 'bottom' | 'left' | 'right'; noBodyStyles?: boolean; handleOnly?: boolean; preventScrollRestoration?: boolean; snapPoints?: (number | string)[]; } declare interface FormElementProps { size?: 'md' | 'sm'; label?: string; fixedLabel?: boolean; error?: string; message?: string; disabled?: boolean; tooltip?: TooltipProps; } declare interface IconProps { filled?: boolean; icon?: string | null; clickable?: boolean; size?: IconSize; scheme?: SchemeColor_2; } declare type IconSize = 'nano' | 'xs' | 'sm' | 'ant' | 'md' | 'lg' | 'xl' | 'avatar-lg' | 'avatar-md' | 'avatar-sm' | 'avatar-xs' | 'avatar-nano'; declare interface InputProps { placeholder?: string; type?: InputVariant; modelValue?: string; nativeType?: string; message?: string; errors?: string | string[]; label?: string; iconLeft?: string; iconRight?: string; allowTogglePassword?: boolean; iconLeftClickable?: boolean; iconRightClickable?: boolean; hasCloudyColor?: boolean; size?: InputSize | string; mask?: string | string[]; tooltip?: TooltipProps; maxlength?: number | null; showMaxlengthCounter?: boolean; disabled?: boolean; readonly?: boolean; useFocusProp?: boolean; focus?: boolean; showClear?: boolean; } declare type InputSize = 'md' | 'sm'; declare type InputVariant = 'normal' | 'error'; declare interface PageHeaderProps { title: string; description?: string; hasBackButton?: boolean; hideDivider?: boolean; } declare interface PaginationProps { modelValue?: number; max?: number; show?: number; disabled?: boolean; } declare type PeriodOption = { id: string; name: string; }; declare interface Props { returnName?: boolean; position?: 'top' | 'bottom'; locale?: string; } declare interface RadioGroupProps { modelValue?: string | number; state?: 'horizontal' | 'vertical'; label?: string; labelTooltip?: TooltipProps; name?: string; helper?: string; } declare interface RadioProps { modelValue?: string | number; value?: string | number; disabled?: boolean; label?: string; name?: string; helper?: string; } declare interface SelectItemProps { size?: string; selectable?: boolean; active?: boolean; textFocused?: boolean; } declare interface SkeletonLoadingProps { prefix?: string; count?: number; duration?: number; tag?: string; width?: string | number; height?: string | number; circle?: boolean; loading?: boolean; direct?: boolean; } declare interface SwitchProps { size?: 'small' | 'medium'; label?: string; labelTooltip?: TooltipProps; option?: string; helper?: string; textLeft?: string; textRight?: string; disabled?: boolean; modelValue?: boolean; } declare interface TagProps { type?: TagType; size?: TagSize; text?: string; disabled?: boolean; scheme?: string; leftIcon?: string; hasCloseIcon?: boolean; } declare type TagSize = 'small' | 'medium'; declare type TagType = 'default' | 'brand' | 'next'; declare type TeleportTarget = string | HTMLElement; declare interface TextAreaProps { size?: 'md' | 'sm'; resize?: 'none' | 'vertical'; label?: string; placeholder?: string; modelValue?: string; maxLength?: number; message?: string; disabled?: boolean; type?: 'normal' | 'error'; tooltip?: TooltipProps; errors?: string | string[]; } export declare type Theme = 'light' | 'dark'; export declare type ThemePreference = Theme | 'system'; declare interface ToastButton { text: string; action: () => void; } declare interface ToastCall { info: (title: string, description?: string, options?: ToastOptions) => Promise; success: (title: string, description?: string, options?: ToastOptions) => Promise; attention: (title: string, description?: string, options?: ToastOptions) => Promise; error: (title: string, description?: string, options?: ToastOptions) => Promise; } declare interface ToastOptions { type?: ToastType; button?: ToastButton; timeout?: number; } declare interface ToastProps extends ToastOptions { title: string; description?: string; } declare type ToastType = 'informational' | 'attention' | 'success' | 'error'; declare interface TooltipProps { text?: string; enabled?: boolean; forceOpen?: boolean; side?: 'top' | 'right' | 'bottom' | 'left'; maxWidth?: string; enableHtml?: boolean; showClose?: boolean; class?: string; contentProps?: Partial; } declare const Unnnic: UnnnicPlugin; export default Unnnic; export declare const UnnnicAccordion: DefineComponent, {}, { height: number; setHeightToNull: null; }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { open: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicAccordion: DefineComponent, {}, { height: number; setHeightToNull: null; }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { open: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicAlert: DefineComponent void; }; type: { type: StringConstructor; default: string; }; }>, {}, {}, { toastType(): "error" | "attention" | "informational" | "success"; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly void; }; type: { type: StringConstructor; default: string; }; }>> & Readonly<{}>, { type: string; text: string; scheme: string; version: string; onClose: Function; }, {}, { UnnnicToast: DefineComponent any; destroy: () => any; }, string, PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; onDestroy?: (() => any) | undefined; }>, { type: ToastType; button: ToastButton; title: string; description: string; timeout: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; Version1dot1: DefineComponent void; }; type: { type: StringConstructor; default: string; }; }>, {}, {}, {}, { emitClose(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "close"[], "close", PublicProps, Readonly void; }; type: { type: StringConstructor; default: string; }; }>> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; }>, { type: string; text: string; scheme: string; onClose: Function; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicAlert: DefineComponent void; }; type: { type: StringConstructor; default: string; }; }>, {}, {}, { toastType(): "error" | "attention" | "informational" | "success"; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly void; }; type: { type: StringConstructor; default: string; }; }>> & Readonly<{}>, { type: string; text: string; scheme: string; version: string; onClose: Function; }, {}, { UnnnicToast: DefineComponent any; destroy: () => any; }, string, PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; onDestroy?: (() => any) | undefined; }>, { type: ToastType; button: ToastButton; title: string; description: string; timeout: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; Version1dot1: DefineComponent void; }; type: { type: StringConstructor; default: string; }; }>, {}, {}, {}, { emitClose(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "close"[], "close", PublicProps, Readonly void; }; type: { type: StringConstructor; default: string; }; }>> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; }>, { type: string; text: string; scheme: string; onClose: Function; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicAudioRecorder: DefineComponent, {}, { recorder: MediaRecorder; audio: HTMLAudioElement; stream: MediaStream; audioChunks: never[]; duration: number; currentTime: number; mockMilliseconds: number; intervalMockMilliseconds: null; status: ("idle" | "recording" | "recorded" | "playing" | "paused"); bars: never[]; }, { isIdle(): boolean; isPlaying(): boolean; isRecording(): boolean; isRecorded(): boolean; playedPercentual(): number; }, { getBlobDuration(blob: any): Promise; record(): Promise; hasInUseRecordDevice(): true; getAudioRecordDevice(): Promise; setupRecorderAndAudio(): Promise; addListeners(): void; addAudioEventListeners(): void; startMockMilliseconds(): void; stopMockMilliseconds(): void; startRecord(): void; discard(): void; save(): void; pause(): void; stop(): void; play(): void; progressBarUpdate(event: any): void; srcToBars(src: any): Promise; numberToTimeString(time: any): string; }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:model-value" | "status" | "failed-click" | "update:showTranscriptionText")[], "update:model-value" | "status" | "failed-click" | "update:showTranscriptionText", PublicProps, Readonly> & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; "onFailed-click"?: ((...args: any[]) => any) | undefined; "onUpdate:showTranscriptionText"?: ((...args: any[]) => any) | undefined; onStatus?: ((...args: any[]) => any) | undefined; }>, { locale: string; src: string; saveText: string; hideRecordingIndicator: boolean; enableGenerateTranscription: boolean; reqStatus: string; showTranscriptionAction: boolean; isLoadingTranscription: boolean; showTranscriptionText: boolean; transcriptionText: string; fluidBar: boolean; canDiscard: boolean; playbackAudioBars: boolean; discardText: string; }, {}, { AudioHandler: DefineComponent, {}, { defaultTranslations: { save: { 'pt-br': string; en: string; es: string; }; }; }, {}, { save(): void; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, "save"[], "save", PublicProps, Readonly> & Readonly<{ onSave?: ((...args: any[]) => any) | undefined; }>, { time: string; isRecording: boolean; saveText: string; hideRecordingIndicator: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; AudioPlayer: DefineComponent, {}, { progress: number; defaultTranslations: { show_transcription: { 'pt-br': string; en: string; es: string; }; hide_transcription: { 'pt-br': string; en: string; es: string; }; unavailable_transcription: { 'pt-br': string; en: string; es: string; }; loading_transcription: { 'pt-br': string; en: string; es: string; }; }; }, { showProgressBar(): boolean; playbackIcon(): any; transcriptionTooltipText(): any; progressBarStyle(): { '--progressBarPercentualValue': string; }; }, { clickTranscription(): void; click(): void; togglePlayback(): void; play(): void; pause(): void; emitProgressBarUpdate(event: any): void; isBarActive(index: any): boolean; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, ("pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText")[], "pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText", PublicProps, Readonly> & Readonly<{ onPause?: ((...args: any[]) => any) | undefined; onPlay?: ((...args: any[]) => any) | undefined; "onProgress-bar-update"?: ((...args: any[]) => any) | undefined; "onFailed-click"?: ((...args: any[]) => any) | undefined; "onUpdate:showTranscriptionText"?: ((...args: any[]) => any) | undefined; }>, { time: string; locale: string; duration: string; enableGenerateTranscription: boolean; reqStatus: string; isPlaying: boolean; progressBarPercentualValue: number; showTranscriptionAction: boolean; isLoadingTranscription: boolean; showTranscriptionText: boolean; transcriptionText: string; fluidBar: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; AudioTranscriptionButton: DefineComponent any; }, string, PublicProps, Readonly & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; }, {}, string, ComponentProvideOptions, true, {}, any>; UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicAudioRecorder: DefineComponent, {}, { recorder: MediaRecorder; audio: HTMLAudioElement; stream: MediaStream; audioChunks: never[]; duration: number; currentTime: number; mockMilliseconds: number; intervalMockMilliseconds: null; status: ("idle" | "recording" | "recorded" | "playing" | "paused"); bars: never[]; }, { isIdle(): boolean; isPlaying(): boolean; isRecording(): boolean; isRecorded(): boolean; playedPercentual(): number; }, { getBlobDuration(blob: any): Promise; record(): Promise; hasInUseRecordDevice(): true; getAudioRecordDevice(): Promise; setupRecorderAndAudio(): Promise; addListeners(): void; addAudioEventListeners(): void; startMockMilliseconds(): void; stopMockMilliseconds(): void; startRecord(): void; discard(): void; save(): void; pause(): void; stop(): void; play(): void; progressBarUpdate(event: any): void; srcToBars(src: any): Promise; numberToTimeString(time: any): string; }, ComponentOptionsMixin, ComponentOptionsMixin, ("update:model-value" | "status" | "failed-click" | "update:showTranscriptionText")[], "update:model-value" | "status" | "failed-click" | "update:showTranscriptionText", PublicProps, Readonly> & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; "onFailed-click"?: ((...args: any[]) => any) | undefined; "onUpdate:showTranscriptionText"?: ((...args: any[]) => any) | undefined; onStatus?: ((...args: any[]) => any) | undefined; }>, { locale: string; src: string; saveText: string; hideRecordingIndicator: boolean; enableGenerateTranscription: boolean; reqStatus: string; showTranscriptionAction: boolean; isLoadingTranscription: boolean; showTranscriptionText: boolean; transcriptionText: string; fluidBar: boolean; canDiscard: boolean; playbackAudioBars: boolean; discardText: string; }, {}, { AudioHandler: DefineComponent, {}, { defaultTranslations: { save: { 'pt-br': string; en: string; es: string; }; }; }, {}, { save(): void; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, "save"[], "save", PublicProps, Readonly> & Readonly<{ onSave?: ((...args: any[]) => any) | undefined; }>, { time: string; isRecording: boolean; saveText: string; hideRecordingIndicator: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; AudioPlayer: DefineComponent, {}, { progress: number; defaultTranslations: { show_transcription: { 'pt-br': string; en: string; es: string; }; hide_transcription: { 'pt-br': string; en: string; es: string; }; unavailable_transcription: { 'pt-br': string; en: string; es: string; }; loading_transcription: { 'pt-br': string; en: string; es: string; }; }; }, { showProgressBar(): boolean; playbackIcon(): any; transcriptionTooltipText(): any; progressBarStyle(): { '--progressBarPercentualValue': string; }; }, { clickTranscription(): void; click(): void; togglePlayback(): void; play(): void; pause(): void; emitProgressBarUpdate(event: any): void; isBarActive(index: any): boolean; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, ("pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText")[], "pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText", PublicProps, Readonly> & Readonly<{ onPause?: ((...args: any[]) => any) | undefined; onPlay?: ((...args: any[]) => any) | undefined; "onProgress-bar-update"?: ((...args: any[]) => any) | undefined; "onFailed-click"?: ((...args: any[]) => any) | undefined; "onUpdate:showTranscriptionText"?: ((...args: any[]) => any) | undefined; }>, { time: string; locale: string; duration: string; enableGenerateTranscription: boolean; reqStatus: string; isPlaying: boolean; progressBarPercentualValue: number; showTranscriptionAction: boolean; isLoadingTranscription: boolean; showTranscriptionText: boolean; transcriptionText: string; fluidBar: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; AudioTranscriptionButton: DefineComponent any; }, string, PublicProps, Readonly & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; }, {}, string, ComponentProvideOptions, true, {}, any>; UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; export declare const unnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; export declare const UnnnicBanner: DefineComponent, {}, {}, { currentComponent(): DefineComponent, {}, { tempRating: null; baseRating: number; }, {}, { emitRatingAction(star: any): void; starScheme(star: any): "fg-base" | "feedback-yellow"; starOver(star: any): void; starOut(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { rating: number; subtitle: string; firstTitle: string; secondTitle: string; thirdTitle: string; firstDescription: string; secondDescription: string; thirdDescription: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, { emitRatingAction(star: any): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { type: string; rating: number; subtitle: string; firstTitle: string; secondTitle: string; thirdTitle: string; firstDescription: string; secondDescription: string; thirdDescription: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicBanner: DefineComponent, {}, {}, { currentComponent(): DefineComponent, {}, { tempRating: null; baseRating: number; }, {}, { emitRatingAction(star: any): void; starScheme(star: any): "fg-base" | "feedback-yellow"; starOver(star: any): void; starOut(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { rating: number; subtitle: string; firstTitle: string; secondTitle: string; thirdTitle: string; firstDescription: string; secondDescription: string; thirdDescription: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, { emitRatingAction(star: any): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { type: string; rating: number; subtitle: string; firstTitle: string; secondTitle: string; thirdTitle: string; firstDescription: string; secondDescription: string; thirdDescription: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicBreadcrumb: DefineComponent any; }, string, PublicProps, Readonly & Readonly<{ "onCrumb-click"?: ((crumb: BreadcrumbItem) => any) | undefined; }>, { crumbs: BreadcrumbItem[] | null; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; export declare const unnnicBreadcrumb: DefineComponent any; }, string, PublicProps, Readonly & Readonly<{ "onCrumb-click"?: ((crumb: BreadcrumbItem) => any) | undefined; }>, { crumbs: BreadcrumbItem[] | null; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; export declare const UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicCallAlert: (props: any) => void; export declare const unnnicCallAlert: (props: any) => void; export declare const UnnnicCallModal: (props: any) => void; export declare const unnnicCallModal: (props: any) => void; export declare const UnnnicCard: DefineComponent void; }; }>, {}, {}, { currentTypeIcon(): string | null; currentComponent(): DefineComponent, {}, {}, { color(): "green" | "red"; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { value: number; title: string; icon: string; scheme: string; percent: number; invertedPercentage: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; info: string; icon: string; scheme: string; enabled: boolean; infoPosition: string; hasInformationIcon: boolean; }, {}, { ToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; icon: string; scheme: string; description: string; status: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; icon: string; scheme: string; enabled: boolean; description: string; }, {}, { UnnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; clickable: boolean; description: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { text: string; icon: string; clickable: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; icon: string; clickable: boolean; enabled: boolean; description: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, { cardClick(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; clickable: boolean; description: string; comments: string; iconSrc: string; rating: number; typeAction: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, { openModal(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly void; }; }>> & Readonly<{}>, { type: string; value: number; title: string; text: string; info: string; icon: string; clickable: boolean; scheme: string; enabled: boolean; description: string; percent: number; invertedPercentage: boolean; infoPosition: string; hasInformationIcon: boolean; status: string; comments: string; iconSrc: string; rating: number; typeAction: string; buttonAction: Function; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicCard: DefineComponent void; }; }>, {}, {}, { currentTypeIcon(): string | null; currentComponent(): DefineComponent, {}, {}, { color(): "green" | "red"; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { value: number; title: string; icon: string; scheme: string; percent: number; invertedPercentage: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; info: string; icon: string; scheme: string; enabled: boolean; infoPosition: string; hasInformationIcon: boolean; }, {}, { ToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; icon: string; scheme: string; description: string; status: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; icon: string; scheme: string; enabled: boolean; description: string; }, {}, { UnnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; clickable: boolean; description: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { text: string; icon: string; clickable: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; icon: string; clickable: boolean; enabled: boolean; description: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any> | DefineComponent, {}, {}, {}, { cardClick(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; clickable: boolean; description: string; comments: string; iconSrc: string; rating: number; typeAction: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, { openModal(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly void; }; }>> & Readonly<{}>, { type: string; value: number; title: string; text: string; info: string; icon: string; clickable: boolean; scheme: string; enabled: boolean; description: string; percent: number; invertedPercentage: boolean; infoPosition: string; hasInformationIcon: boolean; status: string; comments: string; iconSrc: string; rating: number; typeAction: string; buttonAction: Function; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicCardCompany: DefineComponent, {}, { isOptionsOpen: boolean; }, {}, {}, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { oldVersion: boolean; }, {}, { UnnnicTag: DefineComponent any; close: () => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: (() => any) | undefined; onClose?: (() => any) | undefined; }>, { disabled: boolean; type: TagType; text: string; size: TagSize; scheme: string; leftIcon: string; hasCloseIcon: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicCardCompany: DefineComponent, {}, { isOptionsOpen: boolean; }, {}, {}, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { oldVersion: boolean; }, {}, { UnnnicTag: DefineComponent any; close: () => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: (() => any) | undefined; onClose?: (() => any) | undefined; }>, { disabled: boolean; type: TagType; text: string; size: TagSize; scheme: string; leftIcon: string; hasCloseIcon: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicCardData: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { checked: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicCardData: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { checked: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicCardImage: VueComponent; export declare const unnnicCardImage: VueComponent; export declare const UnnnicCardInformation: DefineComponent, {}, { unnnicFontSize: number; }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { name: string; description: string; subtitle: string; descriptionRow: string; descriptionRowInfo: string; }, {}, { CardStatusesContainer: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { name: string; description: string; subtitle: string; descriptionRow: string; descriptionRowInfo: string; minStatusWidth: string | number; }, {}, { UnnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicCardInformation: DefineComponent, {}, { unnnicFontSize: number; }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { name: string; description: string; subtitle: string; descriptionRow: string; descriptionRowInfo: string; }, {}, { CardStatusesContainer: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { name: string; description: string; subtitle: string; descriptionRow: string; descriptionRowInfo: string; minStatusWidth: string | number; }, {}, { UnnnicAvatarIcon: DefineComponent & Readonly<{}>, { size: AvatarIconSize; filled: boolean; icon: string; scheme: SchemeColor; enabled: boolean; opacity: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicCardNumber: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { number: string; description: string; fullSize: boolean; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicCardNumber: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { number: string; description: string; fullSize: boolean; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicCardProject: VueComponent; export declare const unnnicCardProject: VueComponent; export declare const UnnnicChartBar: DefineComponent, {}, { colors: string[]; }, { legends(): any[]; maxValue(): number; }, { value(value: any): any; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { condensed: boolean; previousDisabled: boolean; nextDisabled: boolean; showFooterLegend: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicChartBar: DefineComponent, {}, { colors: string[]; }, { legends(): any[]; maxValue(): number; }, { value(value: any): any; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { condensed: boolean; previousDisabled: boolean; nextDisabled: boolean; showFooterLegend: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicChartFunnel: VueComponent; export declare const unnnicChartFunnel: VueComponent; export declare const UnnnicChartLine: DefineComponent, {}, { chartContainerWidthInterval: null; chartContainerWidth: number; }, { maxValue(): number; svgChart(): string; }, { value(value: any): any; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { condensed: boolean; }, {}, { UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicChartLine: DefineComponent, {}, { chartContainerWidthInterval: null; chartContainerWidth: number; }, { maxValue(): number; svgChart(): string; }, { value(value: any): any; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { condensed: boolean; }, {}, { UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicChartMultiLine: DefineComponent, {}, { titles: never[]; colors: string[]; }, { maxValue(): number; minValue(): number; lineData(): any; }, { value(value: any): any; findMax(array: any): number; findMin(array: any): number; findTotals(array: any): any; formatValue(value: any): string; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { condensed: boolean; }, {}, { Lines: DefineComponent, {}, { chartContainerWidth: number; chartContainerHeight: number; minValue: number; }, { maxValue(): number; svgChart(): string; }, { findMax(array: any): number; findMin(array: any): number; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicChartMultiLine: DefineComponent, {}, { titles: never[]; colors: string[]; }, { maxValue(): number; minValue(): number; lineData(): any; }, { value(value: any): any; findMax(array: any): number; findMin(array: any): number; findTotals(array: any): any; formatValue(value: any): string; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { condensed: boolean; }, {}, { Lines: DefineComponent, {}, { chartContainerWidth: number; chartContainerHeight: number; minValue: number; }, { maxValue(): number; svgChart(): string; }, { findMax(array: any): number; findMin(array: any): number; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicChartRainbow: DefineComponent, {}, {}, {}, { updateChartSvg(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { modelValue: number; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicChartRainbow: DefineComponent, {}, {}, {}, { updateChartSvg(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { modelValue: number; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicChatsUserAvatar: DefineComponent boolean; }; username: { type: StringConstructor; default: string; }; photoUrl: { type: StringConstructor; default: string; }; scheme: { type: StringConstructor; default: string; }; textColor: { type: StringConstructor; default: string; }; }>, {}, {}, { getUsernameFirstCharacter(): string; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, "click"[], "click", PublicProps, Readonly boolean; }; username: { type: StringConstructor; default: string; }; photoUrl: { type: StringConstructor; default: string; }; scheme: { type: StringConstructor; default: string; }; textColor: { type: StringConstructor; default: string; }; }>> & Readonly<{ onClick?: ((...args: any[]) => any) | undefined; }>, { disabled: boolean; size: string; clickable: boolean; scheme: string; active: boolean; username: string; photoUrl: string; textColor: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicChatsUserAvatar: DefineComponent boolean; }; username: { type: StringConstructor; default: string; }; photoUrl: { type: StringConstructor; default: string; }; scheme: { type: StringConstructor; default: string; }; textColor: { type: StringConstructor; default: string; }; }>, {}, {}, { getUsernameFirstCharacter(): string; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, "click"[], "click", PublicProps, Readonly boolean; }; username: { type: StringConstructor; default: string; }; photoUrl: { type: StringConstructor; default: string; }; scheme: { type: StringConstructor; default: string; }; textColor: { type: StringConstructor; default: string; }; }>> & Readonly<{ onClick?: ((...args: any[]) => any) | undefined; }>, { disabled: boolean; size: string; clickable: boolean; scheme: string; active: boolean; username: string; photoUrl: string; textColor: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicCheckbox: DefineComponent any; "update:model-value": (value: boolean) => any; }, string, PublicProps, Readonly & Readonly<{ onChange?: ((value: boolean) => any) | undefined; "onUpdate:model-value"?: ((value: boolean) => any) | undefined; }>, { disabled: boolean; label: string; modelValue: CheckboxValue; helper: string; textRight: string; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; export declare const unnnicCheckbox: DefineComponent any; "update:model-value": (value: boolean) => any; }, string, PublicProps, Readonly & Readonly<{ onChange?: ((value: boolean) => any) | undefined; "onUpdate:model-value"?: ((value: boolean) => any) | undefined; }>, { disabled: boolean; label: string; modelValue: CheckboxValue; helper: string; textRight: string; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; export declare const UnnnicCheckboxGroup: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { label: string; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { label: string; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { label: string; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicCheckboxGroup: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { label: string; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { label: string; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { label: string; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicChip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onClick?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: (event: Event) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onClick?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: (event: Event) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { right?(_: {}): any; }; }); export declare const unnnicChip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onClick?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: (event: Event) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onClick?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: (event: Event) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { right?(_: {}): any; }; }); export declare const UnnnicCollapse: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "change" | "update:modelValue", ...args: any[]) => void; size: string; modelValue: boolean; active: boolean; borderBottom: boolean; unspacedIcon: boolean; title?: string | undefined; $props: { readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly active?: boolean | undefined; readonly borderBottom?: boolean | undefined; readonly unspacedIcon?: boolean | undefined; readonly title?: string | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "change" | "update:modelValue", ...args: any[]) => void; size: string; modelValue: boolean; active: boolean; borderBottom: boolean; unspacedIcon: boolean; title?: string | undefined; $props: { readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly active?: boolean | undefined; readonly borderBottom?: boolean | undefined; readonly unspacedIcon?: boolean | undefined; readonly title?: string | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "change" | "update:modelValue", ...args: any[]) => void; size: string; modelValue: boolean; active: boolean; borderBottom: boolean; unspacedIcon: boolean; title?: string | undefined; $props: { readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly active?: boolean | undefined; readonly borderBottom?: boolean | undefined; readonly unspacedIcon?: boolean | undefined; readonly title?: string | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { header?(_: {}): any; default?(_: {}): any; }; }); export declare const unnnicCollapse: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "change" | "update:modelValue", ...args: any[]) => void; size: string; modelValue: boolean; active: boolean; borderBottom: boolean; unspacedIcon: boolean; title?: string | undefined; $props: { readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly active?: boolean | undefined; readonly borderBottom?: boolean | undefined; readonly unspacedIcon?: boolean | undefined; readonly title?: string | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "change" | "update:modelValue", ...args: any[]) => void; size: string; modelValue: boolean; active: boolean; borderBottom: boolean; unspacedIcon: boolean; title?: string | undefined; $props: { readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly active?: boolean | undefined; readonly borderBottom?: boolean | undefined; readonly unspacedIcon?: boolean | undefined; readonly title?: string | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "change" | "update:modelValue", ...args: any[]) => void; size: string; modelValue: boolean; active: boolean; borderBottom: boolean; unspacedIcon: boolean; title?: string | undefined; $props: { readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly active?: boolean | undefined; readonly borderBottom?: boolean | undefined; readonly unspacedIcon?: boolean | undefined; readonly title?: string | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { header?(_: {}): any; default?(_: {}): any; }; }); export declare const UnnnicComment: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { time: string; title: string; text: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicComment: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { time: string; title: string; text: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicDataArea: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; text: string; enableHover: boolean; hoverText: string; }, {}, { ToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicDataArea: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; text: string; enableHover: boolean; hoverText: string; }, {}, { ToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicDataTable: VueComponent; export declare const unnnicDataTable: VueComponent; export declare const UnnnicDateFilter: DefineComponent, {}, {}, { dateRange(): string; fullMask(): string; maskedDateFormat(): string; }, { emitFilter(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { placeholder: string; size: string; startDate: Date; endDate: Date; dateFormat: string; dateSeparator: string; }, {}, { UnnnicInput: DefineComponent any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClear?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { disabled: boolean; focus: boolean; type: InputVariant; placeholder: string; label: string; mask: string | string[]; size: InputSize | string; tooltip: TooltipProps; message: string; modelValue: string; nativeType: string; maxlength: number | null; readonly: boolean; useFocusProp: boolean; iconLeft: string; iconRight: string; iconLeftClickable: boolean; iconRightClickable: boolean; allowTogglePassword: boolean; showClear: boolean; errors: string | string[]; hasCloudyColor: boolean; showMaxlengthCounter: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicDateFilter: DefineComponent, {}, {}, { dateRange(): string; fullMask(): string; maskedDateFormat(): string; }, { emitFilter(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { placeholder: string; size: string; startDate: Date; endDate: Date; dateFormat: string; dateSeparator: string; }, {}, { UnnnicInput: DefineComponent any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClear?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { disabled: boolean; focus: boolean; type: InputVariant; placeholder: string; label: string; mask: string | string[]; size: InputSize | string; tooltip: TooltipProps; message: string; modelValue: string; nativeType: string; maxlength: number | null; readonly: boolean; useFocusProp: boolean; iconLeft: string; iconRight: string; iconLeftClickable: boolean; iconRightClickable: boolean; allowTogglePassword: boolean; showClear: boolean; errors: string | string[]; hasCloudyColor: boolean; showMaxlengthCounter: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicDatePicker: DefineComponent)[]) => string | undefined; startDate: Ref; endDate: Ref; optionSelected: Ref; referenceDate: Ref; autoSelect: (method: string) => void; dateToString: (date: Date) => string; getStartAndEndDateByPeriod: (period: string) => { startDate: string | undefined; endDate: string | undefined; }; getDatesOfTheMonth: (reference: string) => DateCell[]; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { change: (value: { startDate: string; endDate: string; }) => any; submit: (value: { startDate: string; endDate: string; }) => any; "update:equivalentOption": (equivalentOption: string) => any; }, string, PublicProps, Readonly & Readonly<{ onChange?: ((value: { startDate: string; endDate: string; }) => any) | undefined; onSubmit?: ((value: { startDate: string; endDate: string; }) => any) | undefined; "onUpdate:equivalentOption"?: ((equivalentOption: string) => any) | undefined; }>, { type: "day" | "month" | "year"; size: "small" | "large"; locale: string; initialStartDate: string; initialEndDate: string; minDate: string; maxDate: string; periodBaseDate: string; equivalentOption: string; clearLabel: string; actionLabel: string; months: string[]; days: string[]; options: PeriodOption[]; disableClear: boolean; hideOptions: boolean; translations: DatePickerTranslations; variant: "card" | "popover"; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; export declare const unnnicDatePicker: DefineComponent)[]) => string | undefined; startDate: Ref; endDate: Ref; optionSelected: Ref; referenceDate: Ref; autoSelect: (method: string) => void; dateToString: (date: Date) => string; getStartAndEndDateByPeriod: (period: string) => { startDate: string | undefined; endDate: string | undefined; }; getDatesOfTheMonth: (reference: string) => DateCell[]; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { change: (value: { startDate: string; endDate: string; }) => any; submit: (value: { startDate: string; endDate: string; }) => any; "update:equivalentOption": (equivalentOption: string) => any; }, string, PublicProps, Readonly & Readonly<{ onChange?: ((value: { startDate: string; endDate: string; }) => any) | undefined; onSubmit?: ((value: { startDate: string; endDate: string; }) => any) | undefined; "onUpdate:equivalentOption"?: ((equivalentOption: string) => any) | undefined; }>, { type: "day" | "month" | "year"; size: "small" | "large"; locale: string; initialStartDate: string; initialEndDate: string; minDate: string; maxDate: string; periodBaseDate: string; equivalentOption: string; clearLabel: string; actionLabel: string; months: string[]; days: string[]; options: PeriodOption[]; disableClear: boolean; hideOptions: boolean; translations: DatePickerTranslations; variant: "card" | "popover"; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; export declare const UnnnicDialog: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, PublicProps, { lazyMount: boolean; unmountDelay: number; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, { lazyMount: boolean; unmountDelay: number; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, string, { lazyMount: boolean; unmountDelay: number; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDialog: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, PublicProps, { lazyMount: boolean; unmountDelay: number; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, { lazyMount: boolean; unmountDelay: number; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, string, { lazyMount: boolean; unmountDelay: number; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDialogClose: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { asChild: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { asChild: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { asChild: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDialogClose: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { asChild: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { asChild: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { asChild: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDialogContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDialogContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDialogFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { divider: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { divider: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { divider: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDialogFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { divider: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { divider: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { divider: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDialogHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; type?: "default" | "success" | "warning" | "attention"; closeButton?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDialogHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; type?: "default" | "success" | "warning" | "attention"; closeButton?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDialogTitle: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDialogTitle: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDialogTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDialogTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDisclaimer: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { type: DisclaimerType; title: string; icon: string; description: string; iconColor: SchemeColor; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { type: DisclaimerType; title: string; icon: string; description: string; iconColor: SchemeColor; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { type: DisclaimerType; title: string; icon: string; description: string; iconColor: SchemeColor; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { icon?(_: {}): any; description?(_: {}): any; }; }); export declare const unnnicDisclaimer: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { type: DisclaimerType; title: string; icon: string; description: string; iconColor: SchemeColor; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { type: DisclaimerType; title: string; icon: string; description: string; iconColor: SchemeColor; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { type: DisclaimerType; title: string; icon: string; description: string; iconColor: SchemeColor; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { icon?(_: {}): any; description?(_: {}): any; }; }); export declare const UnnnicDrawer: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void; title: string; class: string; size: string; modelValue: boolean; description: string; closeIcon: string; lazyMount: boolean; unmountDelay: number; disabledPrimaryButton: boolean; disabledSecondaryButton: boolean; loadingPrimaryButton: boolean; loadingSecondaryButton: boolean; primaryButtonText: string; primaryButtonType: string; secondaryButtonText: string; withoutOverlay: boolean; distinctCloseBack: boolean; $props: { readonly title?: string | undefined; readonly class?: string | undefined; readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly description?: string | undefined; readonly closeIcon?: string | undefined; readonly lazyMount?: boolean | undefined; readonly unmountDelay?: number | undefined; readonly disabledPrimaryButton?: boolean | undefined; readonly disabledSecondaryButton?: boolean | undefined; readonly loadingPrimaryButton?: boolean | undefined; readonly loadingSecondaryButton?: boolean | undefined; readonly primaryButtonText?: string | undefined; readonly primaryButtonType?: string | undefined; readonly secondaryButtonText?: string | undefined; readonly withoutOverlay?: boolean | undefined; readonly distinctCloseBack?: boolean | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void; title: string; class: string; size: string; modelValue: boolean; description: string; closeIcon: string; lazyMount: boolean; unmountDelay: number; disabledPrimaryButton: boolean; disabledSecondaryButton: boolean; loadingPrimaryButton: boolean; loadingSecondaryButton: boolean; primaryButtonText: string; primaryButtonType: string; secondaryButtonText: string; withoutOverlay: boolean; distinctCloseBack: boolean; $props: { readonly title?: string | undefined; readonly class?: string | undefined; readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly description?: string | undefined; readonly closeIcon?: string | undefined; readonly lazyMount?: boolean | undefined; readonly unmountDelay?: number | undefined; readonly disabledPrimaryButton?: boolean | undefined; readonly disabledSecondaryButton?: boolean | undefined; readonly loadingPrimaryButton?: boolean | undefined; readonly loadingSecondaryButton?: boolean | undefined; readonly primaryButtonText?: string | undefined; readonly primaryButtonType?: string | undefined; readonly secondaryButtonText?: string | undefined; readonly withoutOverlay?: boolean | undefined; readonly distinctCloseBack?: boolean | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void; title: string; class: string; size: string; modelValue: boolean; description: string; closeIcon: string; lazyMount: boolean; unmountDelay: number; disabledPrimaryButton: boolean; disabledSecondaryButton: boolean; loadingPrimaryButton: boolean; loadingSecondaryButton: boolean; primaryButtonText: string; primaryButtonType: string; secondaryButtonText: string; withoutOverlay: boolean; distinctCloseBack: boolean; $props: { readonly title?: string | undefined; readonly class?: string | undefined; readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly description?: string | undefined; readonly closeIcon?: string | undefined; readonly lazyMount?: boolean | undefined; readonly unmountDelay?: number | undefined; readonly disabledPrimaryButton?: boolean | undefined; readonly disabledSecondaryButton?: boolean | undefined; readonly loadingPrimaryButton?: boolean | undefined; readonly loadingSecondaryButton?: boolean | undefined; readonly primaryButtonText?: string | undefined; readonly primaryButtonType?: string | undefined; readonly secondaryButtonText?: string | undefined; readonly withoutOverlay?: boolean | undefined; readonly distinctCloseBack?: boolean | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { title?(_: {}): any; content?(_: {}): any; }; }); export declare const unnnicDrawer: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void; title: string; class: string; size: string; modelValue: boolean; description: string; closeIcon: string; lazyMount: boolean; unmountDelay: number; disabledPrimaryButton: boolean; disabledSecondaryButton: boolean; loadingPrimaryButton: boolean; loadingSecondaryButton: boolean; primaryButtonText: string; primaryButtonType: string; secondaryButtonText: string; withoutOverlay: boolean; distinctCloseBack: boolean; $props: { readonly title?: string | undefined; readonly class?: string | undefined; readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly description?: string | undefined; readonly closeIcon?: string | undefined; readonly lazyMount?: boolean | undefined; readonly unmountDelay?: number | undefined; readonly disabledPrimaryButton?: boolean | undefined; readonly disabledSecondaryButton?: boolean | undefined; readonly loadingPrimaryButton?: boolean | undefined; readonly loadingSecondaryButton?: boolean | undefined; readonly primaryButtonText?: string | undefined; readonly primaryButtonType?: string | undefined; readonly secondaryButtonText?: string | undefined; readonly withoutOverlay?: boolean | undefined; readonly distinctCloseBack?: boolean | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void; title: string; class: string; size: string; modelValue: boolean; description: string; closeIcon: string; lazyMount: boolean; unmountDelay: number; disabledPrimaryButton: boolean; disabledSecondaryButton: boolean; loadingPrimaryButton: boolean; loadingSecondaryButton: boolean; primaryButtonText: string; primaryButtonType: string; secondaryButtonText: string; withoutOverlay: boolean; distinctCloseBack: boolean; $props: { readonly title?: string | undefined; readonly class?: string | undefined; readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly description?: string | undefined; readonly closeIcon?: string | undefined; readonly lazyMount?: boolean | undefined; readonly unmountDelay?: number | undefined; readonly disabledPrimaryButton?: boolean | undefined; readonly disabledSecondaryButton?: boolean | undefined; readonly loadingPrimaryButton?: boolean | undefined; readonly loadingSecondaryButton?: boolean | undefined; readonly primaryButtonText?: string | undefined; readonly primaryButtonType?: string | undefined; readonly secondaryButtonText?: string | undefined; readonly withoutOverlay?: boolean | undefined; readonly distinctCloseBack?: boolean | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void; title: string; class: string; size: string; modelValue: boolean; description: string; closeIcon: string; lazyMount: boolean; unmountDelay: number; disabledPrimaryButton: boolean; disabledSecondaryButton: boolean; loadingPrimaryButton: boolean; loadingSecondaryButton: boolean; primaryButtonText: string; primaryButtonType: string; secondaryButtonText: string; withoutOverlay: boolean; distinctCloseBack: boolean; $props: { readonly title?: string | undefined; readonly class?: string | undefined; readonly size?: string | undefined; readonly modelValue?: boolean | undefined; readonly description?: string | undefined; readonly closeIcon?: string | undefined; readonly lazyMount?: boolean | undefined; readonly unmountDelay?: number | undefined; readonly disabledPrimaryButton?: boolean | undefined; readonly disabledSecondaryButton?: boolean | undefined; readonly loadingPrimaryButton?: boolean | undefined; readonly loadingSecondaryButton?: boolean | undefined; readonly primaryButtonText?: string | undefined; readonly primaryButtonType?: string | undefined; readonly secondaryButtonText?: string | undefined; readonly withoutOverlay?: boolean | undefined; readonly distinctCloseBack?: boolean | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { title?(_: {}): any; content?(_: {}): any; }; }); export declare const UnnnicDrawerClose: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { asChild: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { asChild: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { asChild: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDrawerClose: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { asChild: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { asChild: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { asChild: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDrawerContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; size: "medium" | "large" | "extra-large" | "giant"; showOverlay: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; size: "medium" | "large" | "extra-large" | "giant"; showOverlay: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; size: "medium" | "large" | "extra-large" | "giant"; showOverlay: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDrawerContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; size: "medium" | "large" | "extra-large" | "giant"; showOverlay: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; size: "medium" | "large" | "extra-large" | "giant"; showOverlay: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; size: "medium" | "large" | "extra-large" | "giant"; showOverlay: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDrawerDescription: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDrawerDescription: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDrawerFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDrawerFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDrawerHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; close?(_: { class: string; }): any; }; }); export declare const unnnicDrawerHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; close?(_: { class: string; }): any; }; }); export declare const UnnnicDrawerNext: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; onClose?: (() => any) | undefined; onDrag?: ((percentageDragged: number) => any) | undefined; onAnimationEnd?: ((open: boolean) => any) | undefined; onRelease?: ((open: boolean) => any) | undefined; "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { "update:open": (open: boolean) => any; close: () => any; drag: (percentageDragged: number) => any; animationEnd: (open: boolean) => any; release: (open: boolean) => any; "update:activeSnapPoint": (val: string | number) => any; }, PublicProps, { lazyMount: boolean; unmountDelay: number; shouldScaleBackground: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; onClose?: (() => any) | undefined; onDrag?: ((percentageDragged: number) => any) | undefined; onAnimationEnd?: ((open: boolean) => any) | undefined; onRelease?: ((open: boolean) => any) | undefined; "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined; }>, {}, {}, {}, {}, { lazyMount: boolean; unmountDelay: number; shouldScaleBackground: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; onClose?: (() => any) | undefined; onDrag?: ((percentageDragged: number) => any) | undefined; onAnimationEnd?: ((open: boolean) => any) | undefined; onRelease?: ((open: boolean) => any) | undefined; "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { "update:open": (open: boolean) => any; close: () => any; drag: (percentageDragged: number) => any; animationEnd: (open: boolean) => any; release: (open: boolean) => any; "update:activeSnapPoint": (val: string | number) => any; }, string, { lazyMount: boolean; unmountDelay: number; shouldScaleBackground: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDrawerNext: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; onClose?: (() => any) | undefined; onDrag?: ((percentageDragged: number) => any) | undefined; onAnimationEnd?: ((open: boolean) => any) | undefined; onRelease?: ((open: boolean) => any) | undefined; "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { "update:open": (open: boolean) => any; close: () => any; drag: (percentageDragged: number) => any; animationEnd: (open: boolean) => any; release: (open: boolean) => any; "update:activeSnapPoint": (val: string | number) => any; }, PublicProps, { lazyMount: boolean; unmountDelay: number; shouldScaleBackground: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; onClose?: (() => any) | undefined; onDrag?: ((percentageDragged: number) => any) | undefined; onAnimationEnd?: ((open: boolean) => any) | undefined; onRelease?: ((open: boolean) => any) | undefined; "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined; }>, {}, {}, {}, {}, { lazyMount: boolean; unmountDelay: number; shouldScaleBackground: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; onClose?: (() => any) | undefined; onDrag?: ((percentageDragged: number) => any) | undefined; onAnimationEnd?: ((open: boolean) => any) | undefined; onRelease?: ((open: boolean) => any) | undefined; "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { "update:open": (open: boolean) => any; close: () => any; drag: (percentageDragged: number) => any; animationEnd: (open: boolean) => any; release: (open: boolean) => any; "update:activeSnapPoint": (val: string | number) => any; }, string, { lazyMount: boolean; unmountDelay: number; shouldScaleBackground: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); declare interface UnnnicDrawerNextProps extends DrawerRootProps { /** * When true, the drawer is only mounted while open and stays mounted for * `unmountDelay` ms after closing so the exit animation can play. Use it * to avoid mounting many drawers eagerly inside lists. */ lazyMount?: boolean; /** * Delay (ms) before the drawer is unmounted after closing. Should match * the leave animation duration. Only applies when `lazyMount` is true. */ unmountDelay?: number; } export declare const UnnnicDrawerTitle: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicDrawerTitle: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicDropArea: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, { dropzone: HTMLElement; file: HTMLInputElement; }, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { title?(_: {}): any; subtitle?(_: {}): any; }; }); export declare const unnnicDropArea: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, { dropzone: HTMLElement; file: HTMLInputElement; }, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { title?(_: {}): any; subtitle?(_: {}): any; }; }); export declare const UnnnicDropdown: VueComponent; export declare const unnnicDropdown: VueComponent; export declare const UnnnicDropdownItem: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicDropdownItem: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicEmojiPicker: DefineComponent any; emojiSelected: (emoji: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; onEmojiSelected?: ((emoji: string) => any) | undefined; }>, { locale: string; position: "top" | "bottom"; returnName: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, { emojiPickerRef: HTMLDivElement; }, HTMLDivElement>; export declare const unnnicEmojiPicker: DefineComponent any; emojiSelected: (emoji: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; onEmojiSelected?: ((emoji: string) => any) | undefined; }>, { locale: string; position: "top" | "bottom"; returnName: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, { emojiPickerRef: HTMLDivElement; }, HTMLDivElement>; export declare const UnnnicFontSize = 16; export declare const unnnicFontSize = 16; export declare const UnnnicFormElement: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; error: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; fixedLabel: boolean; message: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; error: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; fixedLabel: boolean; message: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; error: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; fixedLabel: boolean; message: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; rightMessage?(_: {}): any; }; }); export declare const unnnicFormElement: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; error: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; fixedLabel: boolean; message: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; error: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; fixedLabel: boolean; message: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; error: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; fixedLabel: boolean; message: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; rightMessage?(_: {}): any; }; }); export declare const UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const unnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const UnnnicIconLoading: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { size: string; scheme: string; strokeWidth: number; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>; export declare const unnnicIconLoading: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { size: string; scheme: string; strokeWidth: number; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>; export declare const UnnnicIconSvg: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const unnnicIconSvg: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const UnnnicImportCard: DefineComponent, {}, {}, { fileIcon(): any; }, { importFile(): void; handleFileChange(event: any): void; emitDeletion(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; subtitle: string; importProgress: number; isImporting: boolean; canImport: boolean; canDelete: boolean; acceptedFormats: string; uploadIcon: string; }, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicImportCard: DefineComponent, {}, {}, { fileIcon(): any; }, { importFile(): void; handleFileChange(event: any): void; emitDeletion(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; subtitle: string; importProgress: number; isImporting: boolean; canImport: boolean; canDelete: boolean; acceptedFormats: string; uploadIcon: string; }, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicInput: DefineComponent any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClear?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { disabled: boolean; focus: boolean; type: InputVariant; placeholder: string; label: string; mask: string | string[]; size: InputSize | string; tooltip: TooltipProps; message: string; modelValue: string; nativeType: string; maxlength: number | null; readonly: boolean; useFocusProp: boolean; iconLeft: string; iconRight: string; iconLeftClickable: boolean; iconRightClickable: boolean; allowTogglePassword: boolean; showClear: boolean; errors: string | string[]; hasCloudyColor: boolean; showMaxlengthCounter: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; export declare const unnnicInput: DefineComponent any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClear?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { disabled: boolean; focus: boolean; type: InputVariant; placeholder: string; label: string; mask: string | string[]; size: InputSize | string; tooltip: TooltipProps; message: string; modelValue: string; nativeType: string; maxlength: number | null; readonly: boolean; useFocusProp: boolean; iconLeft: string; iconRight: string; iconLeftClickable: boolean; iconRightClickable: boolean; allowTogglePassword: boolean; showClear: boolean; errors: string | string[]; hasCloudyColor: boolean; showMaxlengthCounter: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; export declare const UnnnicInputDatePicker: VueComponent; export declare const unnnicInputDatePicker: VueComponent; export declare const UnnnicLabel: VueComponent; export declare const unnnicLabel: VueComponent; export declare const UnnniclanguageSelect: VueComponent; export declare const unnniclanguageSelect: VueComponent; export declare const UnnnicModal: DefineComponent, {}, {}, { hasAlertMessage(): boolean; hasButton(): boolean; hasIcon(): boolean; }, { mobileAnimateReset(): void; mobileAnimateOpen(): void; mobileAnimateClose(): Promise; onOutsideCloseClick(): void; onCloseClick(): Promise; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { text: string; scheme: string; description: string; modalIcon: string; closeIcon: boolean; alertMessage: string; showModal: boolean; persistent: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicModal: DefineComponent, {}, {}, { hasAlertMessage(): boolean; hasButton(): boolean; hasIcon(): boolean; }, { mobileAnimateReset(): void; mobileAnimateOpen(): void; mobileAnimateClose(): Promise; onOutsideCloseClick(): void; onCloseClick(): Promise; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { text: string; scheme: string; description: string; modalIcon: string; closeIcon: boolean; alertMessage: string; showModal: boolean; persistent: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicModalDialog: DefineComponent {}; }; hideSecondaryButton: { type: BooleanConstructor; default: boolean; }; secondaryButtonProps: { type: ObjectConstructor; default: () => {}; }; }>, {}, { defaultTranslations: { cancel: { 'pt-br': string; en: string; es: string; }; }; primaryButtonTypeMapper: { success: string; warning: string; attention: string; }; }, {}, { close(): void; persistentHandler(event: any): void; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, ("update:modelValue" | "primaryButtonClick" | "secondaryButtonClick")[], "update:modelValue" | "primaryButtonClick" | "secondaryButtonClick", PublicProps, Readonly {}; }; hideSecondaryButton: { type: BooleanConstructor; default: boolean; }; secondaryButtonProps: { type: ObjectConstructor; default: () => {}; }; }>> & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; onPrimaryButtonClick?: ((...args: any[]) => any) | undefined; onSecondaryButtonClick?: ((...args: any[]) => any) | undefined; }>, { type: string; title: string; size: string; icon: string; iconScheme: string; persistent: boolean; showCloseIcon: boolean; showActionsDivider: boolean; primaryButtonProps: Record; hideSecondaryButton: boolean; secondaryButtonProps: Record; }, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialog: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, PublicProps, { lazyMount: boolean; unmountDelay: number; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, { lazyMount: boolean; unmountDelay: number; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, string, { lazyMount: boolean; unmountDelay: number; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; type?: "default" | "success" | "warning" | "attention"; closeButton?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogTitle: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { divider: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { divider: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { divider: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicModalDialog: DefineComponent {}; }; hideSecondaryButton: { type: BooleanConstructor; default: boolean; }; secondaryButtonProps: { type: ObjectConstructor; default: () => {}; }; }>, {}, { defaultTranslations: { cancel: { 'pt-br': string; en: string; es: string; }; }; primaryButtonTypeMapper: { success: string; warning: string; attention: string; }; }, {}, { close(): void; persistentHandler(event: any): void; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, ("update:modelValue" | "primaryButtonClick" | "secondaryButtonClick")[], "update:modelValue" | "primaryButtonClick" | "secondaryButtonClick", PublicProps, Readonly {}; }; hideSecondaryButton: { type: BooleanConstructor; default: boolean; }; secondaryButtonProps: { type: ObjectConstructor; default: () => {}; }; }>> & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; onPrimaryButtonClick?: ((...args: any[]) => any) | undefined; onSecondaryButtonClick?: ((...args: any[]) => any) | undefined; }>, { type: string; title: string; size: string; icon: string; iconScheme: string; persistent: boolean; showCloseIcon: boolean; showActionsDivider: boolean; primaryButtonProps: Record; hideSecondaryButton: boolean; secondaryButtonProps: Record; }, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialog: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, PublicProps, { lazyMount: boolean; unmountDelay: number; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, { lazyMount: boolean; unmountDelay: number; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, string, { lazyMount: boolean; unmountDelay: number; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; size: "small" | "medium" | "large"; parentClass: HTMLAttributes["class"]; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; type?: "default" | "success" | "warning" | "attention"; closeButton?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { type: "default" | "success" | "warning" | "attention"; divider: boolean; closeButton: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogTitle: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicDialogFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { divider: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; divider?: boolean; }> & Readonly<{}>, {}, {}, {}, {}, { divider: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { divider: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicModalNext: DefineComponent, {}, { confirmText: string; }, { isPersistent(): any; buttonType(): "" | "alert" | "danger"; disabled(): boolean; }, { closeByDarkBackground(): void; close(): void; justClose(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "close"[], "close", PublicProps, Readonly> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; }>, { type: string; actionPrimaryLoading: boolean; showCloseButton: boolean; actionPrimaryButtonType: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicInput: DefineComponent any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClear?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { disabled: boolean; focus: boolean; type: InputVariant; placeholder: string; label: string; mask: string | string[]; size: InputSize | string; tooltip: TooltipProps; message: string; modelValue: string; nativeType: string; maxlength: number | null; readonly: boolean; useFocusProp: boolean; iconLeft: string; iconRight: string; iconLeftClickable: boolean; iconRightClickable: boolean; allowTogglePassword: boolean; showClear: boolean; errors: string | string[]; hasCloudyColor: boolean; showMaxlengthCounter: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicModalNext: DefineComponent, {}, { confirmText: string; }, { isPersistent(): any; buttonType(): "" | "alert" | "danger"; disabled(): boolean; }, { closeByDarkBackground(): void; close(): void; justClose(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "close"[], "close", PublicProps, Readonly> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; }>, { type: string; actionPrimaryLoading: boolean; showCloseButton: boolean; actionPrimaryButtonType: string; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicInput: DefineComponent any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly & Readonly<{ onClear?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { disabled: boolean; focus: boolean; type: InputVariant; placeholder: string; label: string; mask: string | string[]; size: InputSize | string; tooltip: TooltipProps; message: string; modelValue: string; nativeType: string; maxlength: number | null; readonly: boolean; useFocusProp: boolean; iconLeft: string; iconRight: string; iconLeftClickable: boolean; iconRightClickable: boolean; allowTogglePassword: boolean; showClear: boolean; errors: string | string[]; hasCloudyColor: boolean; showMaxlengthCounter: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>; UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicMultiSelect: VueComponent; export declare const unnnicMultiSelect: VueComponent; export declare const UnnnicNavigator: DefineComponent, {}, {}, { activePageIndex(): number; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicNavigator: DefineComponent, {}, {}, { activePageIndex(): number; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicPageHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onBack?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { back: () => any; }, PublicProps, { description: string; hasBackButton: boolean; hideDivider: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onBack?: (() => any) | undefined; }>, {}, {}, {}, {}, { description: string; hasBackButton: boolean; hideDivider: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onBack?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { back: () => any; }, string, { description: string; hasBackButton: boolean; hideDivider: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { infos?(_: {}): any; tag?(_: {}): any; actions?(_: {}): any; tabs?(_: {}): any; }; }); export declare const unnnicPageHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onBack?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { back: () => any; }, PublicProps, { description: string; hasBackButton: boolean; hideDivider: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onBack?: (() => any) | undefined; }>, {}, {}, {}, {}, { description: string; hasBackButton: boolean; hideDivider: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onBack?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { back: () => any; }, string, { description: string; hasBackButton: boolean; hideDivider: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { infos?(_: {}): any; tag?(_: {}): any; actions?(_: {}): any; tabs?(_: {}): any; }; }); export declare const UnnnicPagination: DefineComponent any; }, string, PublicProps, Readonly & Readonly<{ "onUpdate:model-value"?: ((value: number) => any) | undefined; }>, { disabled: boolean; modelValue: number; max: number; show: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; export declare const unnnicPagination: DefineComponent any; }, string, PublicProps, Readonly & Readonly<{ "onUpdate:model-value"?: ((value: number) => any) | undefined; }>, { disabled: boolean; modelValue: number; max: number; show: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; declare interface UnnnicPlugin { install(app: App, options?: UnnnicPluginOptions): void; [key: string]: any; } export declare interface UnnnicPluginOptions { teleportTarget?: TeleportTarget | null; } export declare const UnnnicPopover: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicPopover: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:open": (value: boolean) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicPopoverContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; sideOffset: number; align: "center" | "start" | "end"; size: string; width: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, { footerContainer: HTMLDivElement; }, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; sideOffset: number; align: "center" | "start" | "end"; size: string; width: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; sideOffset: number; align: "center" | "start" | "end"; size: string; width: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicPopoverContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, PublicProps, { class: HTMLAttributes["class"]; sideOffset: number; align: "center" | "start" | "end"; size: string; width: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, { footerContainer: HTMLDivElement; }, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, { class: HTMLAttributes["class"]; sideOffset: number; align: "center" | "start" | "end"; size: string; width: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined; onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined; onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined; onOpenAutoFocus?: ((event: Event) => any) | undefined; onCloseAutoFocus?: ((event: Event) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { escapeKeyDown: (event: KeyboardEvent) => any; pointerDownOutside: (event: PointerDownOutsideEvent) => any; focusOutside: (event: FocusOutsideEvent) => any; interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any; openAutoFocus: (event: Event) => any; closeAutoFocus: (event: Event) => any; }, string, { class: HTMLAttributes["class"]; sideOffset: number; align: "center" | "start" | "end"; size: string; width: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicPopoverFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; default?(_: {}): any; }; }); export declare const unnnicPopoverFooter: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; default?(_: {}): any; }; }); export declare const UnnnicPopoverOption: VueComponent; export declare const unnnicPopoverOption: VueComponent; export declare const UnnnicPopoverTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicPopoverTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicProgressBar: DefineComponent, {}, {}, { percentage(): number; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { type: string; inline: boolean; canClose: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicProgressBar: DefineComponent, {}, {}, { percentage(): number; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { type: string; inline: boolean; canClose: boolean; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicRadio: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: string | number) => any; }, PublicProps, { disabled: boolean; value: string | number; label: string; name: string; modelValue: string | number; helper: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, {}, {}, {}, {}, { disabled: boolean; value: string | number; label: string; name: string; modelValue: string | number; helper: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: string | number) => any; }, string, { disabled: boolean; value: string | number; label: string; name: string; modelValue: string | number; helper: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicRadio: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: string | number) => any; }, PublicProps, { disabled: boolean; value: string | number; label: string; name: string; modelValue: string | number; helper: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, {}, {}, {}, {}, { disabled: boolean; value: string | number; label: string; name: string; modelValue: string | number; helper: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: string | number) => any; }, string, { disabled: boolean; value: string | number; label: string; name: string; modelValue: string | number; helper: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicRadioGroup: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, PublicProps, { label: string; name: string; modelValue: string | number; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { label: string; name: string; modelValue: string | number; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, string, { label: string; name: string; modelValue: string | number; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicRadioGroup: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, PublicProps, { label: string; name: string; modelValue: string | number; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { label: string; name: string; modelValue: string | number; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, string, { label: string; name: string; modelValue: string | number; helper: string; state: "horizontal" | "vertical"; labelTooltip: TooltipProps; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicSegmentedControl: { new (...args: any[]): CreateComponentPublicInstanceWithMixins> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicSegmentedControl: { new (...args: any[]): CreateComponentPublicInstanceWithMixins> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicSegmentedControlContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicSegmentedControlContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicSegmentedControlList: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { size: "small" | "medium"; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { size: "small" | "medium"; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { size: "small" | "medium"; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicSegmentedControlList: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { size: "small" | "medium"; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { size: "small" | "medium"; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { size: "small" | "medium"; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicSegmentedControlTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicSegmentedControlTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicSelect: VueComponent; export declare const unnnicSelect: VueComponent; export declare const UnnnicSelectItem: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: () => any; }, PublicProps, { size: string; selectable: boolean; active: boolean; textFocused: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, { size: string; selectable: boolean; active: boolean; textFocused: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: () => any; }, string, { size: string; selectable: boolean; active: boolean; textFocused: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicSelectItem: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: () => any; }, PublicProps, { size: string; selectable: boolean; active: boolean; textFocused: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, { size: string; selectable: boolean; active: boolean; textFocused: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onClick?: (() => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { click: () => any; }, string, { size: string; selectable: boolean; active: boolean; textFocused: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicSelectSmart: VueComponent; export declare const unnnicSelectSmart: VueComponent; export declare const UnnnicSelectTime: VueComponent; export declare const unnnicSelectTime: VueComponent; export declare const UnnnicSidebar: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "navigate", ...args: any[]) => void; width: string; active: Record; position: string; autoNavigateFirstChild: boolean; items: unknown[]; $props: { readonly width?: string | undefined; readonly active?: Record | undefined; readonly position?: string | undefined; readonly autoNavigateFirstChild?: boolean | undefined; readonly items?: unknown[] | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "navigate", ...args: any[]) => void; width: string; active: Record; position: string; autoNavigateFirstChild: boolean; items: unknown[]; $props: { readonly width?: string | undefined; readonly active?: Record | undefined; readonly position?: string | undefined; readonly autoNavigateFirstChild?: boolean | undefined; readonly items?: unknown[] | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "navigate", ...args: any[]) => void; width: string; active: Record; position: string; autoNavigateFirstChild: boolean; items: unknown[]; $props: { readonly width?: string | undefined; readonly active?: Record | undefined; readonly position?: string | undefined; readonly autoNavigateFirstChild?: boolean | undefined; readonly items?: unknown[] | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { top?(_: { class: string; }): any; bottom?(_: { class: string; }): any; }; }); export declare const unnnicSidebar: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "navigate", ...args: any[]) => void; width: string; active: Record; position: string; autoNavigateFirstChild: boolean; items: unknown[]; $props: { readonly width?: string | undefined; readonly active?: Record | undefined; readonly position?: string | undefined; readonly autoNavigateFirstChild?: boolean | undefined; readonly items?: unknown[] | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "navigate", ...args: any[]) => void; width: string; active: Record; position: string; autoNavigateFirstChild: boolean; items: unknown[]; $props: { readonly width?: string | undefined; readonly active?: Record | undefined; readonly position?: string | undefined; readonly autoNavigateFirstChild?: boolean | undefined; readonly items?: unknown[] | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "navigate", ...args: any[]) => void; width: string; active: Record; position: string; autoNavigateFirstChild: boolean; items: unknown[]; $props: { readonly width?: string | undefined; readonly active?: Record | undefined; readonly position?: string | undefined; readonly autoNavigateFirstChild?: boolean | undefined; readonly items?: unknown[] | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { top?(_: { class: string; }): any; bottom?(_: { class: string; }): any; }; }); export declare const UnnnicSidebarItem: DefineComponent< {}, { $emit: (event: "navigate", ...args: any[]) => void; active: Record; item: Record; autoNavigateFirstChild: boolean; $props: { readonly active?: Record | undefined; readonly item?: Record | undefined; readonly autoNavigateFirstChild?: boolean | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicSidebarItem: DefineComponent< {}, { $emit: (event: "navigate", ...args: any[]) => void; active: Record; item: Record; autoNavigateFirstChild: boolean; $props: { readonly active?: Record | undefined; readonly item?: Record | undefined; readonly autoNavigateFirstChild?: boolean | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicSimpleCard: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "click"[], "click", PublicProps, Readonly> & Readonly<{ onClick?: ((...args: any[]) => any) | undefined; }>, { title: string; text: string; clickable: boolean; titleSize: string; titleTooltip: string; }, {}, { UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicSimpleCard: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "click"[], "click", PublicProps, Readonly> & Readonly<{ onClick?: ((...args: any[]) => any) | undefined; }>, { title: string; text: string; clickable: boolean; titleSize: string; titleTooltip: string; }, {}, { UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicSkeletonLoading: DefineComponent & Readonly<{}>, { circle: boolean; width: string | number; height: string | number; loading: boolean; count: number; prefix: string; duration: number; tag: string; direct: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const unnnicSkeletonLoading: DefineComponent & Readonly<{}>, { circle: boolean; width: string | number; height: string | number; loading: boolean; count: number; prefix: string; duration: number; tag: string; direct: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const UnnnicSwitch: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:model-value": (...args: any[]) => void; }, PublicProps, { disabled: boolean; label: string; option: string; size: "small" | "medium"; modelValue: boolean; helper: string; textRight: string; labelTooltip: TooltipProps; textLeft: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { disabled: boolean; label: string; option: string; size: "small" | "medium"; modelValue: boolean; helper: string; textRight: string; labelTooltip: TooltipProps; textLeft: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:model-value": (...args: any[]) => void; }, string, { disabled: boolean; label: string; option: string; size: "small" | "medium"; modelValue: boolean; helper: string; textRight: string; labelTooltip: TooltipProps; textLeft: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { suffix?(_: {}): any; }; }); export declare const unnnicSwitch: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:model-value": (...args: any[]) => void; }, PublicProps, { disabled: boolean; label: string; option: string; size: "small" | "medium"; modelValue: boolean; helper: string; textRight: string; labelTooltip: TooltipProps; textLeft: string; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { disabled: boolean; label: string; option: string; size: "small" | "medium"; modelValue: boolean; helper: string; textRight: string; labelTooltip: TooltipProps; textLeft: string; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:model-value": (...args: any[]) => void; }, string, { disabled: boolean; label: string; option: string; size: "small" | "medium"; modelValue: boolean; helper: string; textRight: string; labelTooltip: TooltipProps; textLeft: string; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { suffix?(_: {}): any; }; }); export declare const UnnnicTab: DefineComponent boolean; }; activeTab: { type: StringConstructor; default: string; }; initialTab: { type: StringConstructor; default: null; }; tabs: { type: ArrayConstructor; default: null; validator: (tabs: unknown) => any; }; disabledTabs: { type: ArrayConstructor; default: null; }; }>, {}, { localValue: string; }, { tabPanelSlotName(): string; }, { tabHeadSlotName(tabName: any): string; tabHeadTooltipSlotName(tabName: any): string; getHeadTooltip(tabName: any): VNodeNormalizedChildren; change(value: any): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "change"[], "change", PublicProps, Readonly boolean; }; activeTab: { type: StringConstructor; default: string; }; initialTab: { type: StringConstructor; default: null; }; tabs: { type: ArrayConstructor; default: null; validator: (tabs: unknown) => any; }; disabledTabs: { type: ArrayConstructor; default: null; }; }>> & Readonly<{ onChange?: ((...args: any[]) => any) | undefined; }>, { size: string; activeTab: string; initialTab: string; tabs: unknown[]; disabledTabs: unknown[]; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicTab: DefineComponent boolean; }; activeTab: { type: StringConstructor; default: string; }; initialTab: { type: StringConstructor; default: null; }; tabs: { type: ArrayConstructor; default: null; validator: (tabs: unknown) => any; }; disabledTabs: { type: ArrayConstructor; default: null; }; }>, {}, { localValue: string; }, { tabPanelSlotName(): string; }, { tabHeadSlotName(tabName: any): string; tabHeadTooltipSlotName(tabName: any): string; getHeadTooltip(tabName: any): VNodeNormalizedChildren; change(value: any): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "change"[], "change", PublicProps, Readonly boolean; }; activeTab: { type: StringConstructor; default: string; }; initialTab: { type: StringConstructor; default: null; }; tabs: { type: ArrayConstructor; default: null; validator: (tabs: unknown) => any; }; disabledTabs: { type: ArrayConstructor; default: null; }; }>> & Readonly<{ onChange?: ((...args: any[]) => any) | undefined; }>, { size: string; activeTab: string; initialTab: string; tabs: unknown[]; disabledTabs: unknown[]; }, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicTable: DefineComponent, {}, { value: boolean; }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { version: string; }, {}, { UiTable: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, () => { unnnicTableVersion: ComputedRef; }, true, {}, any>; export declare const unnnicTable: DefineComponent, {}, { value: boolean; }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { version: string; }, {}, { UiTable: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, () => { unnnicTableVersion: ComputedRef; }, true, {}, any>; export declare const UnnnicTableBody: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableSectionElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicTableBody: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableSectionElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTableCell: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { ellipsis: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; ellipsis?: boolean; width?: string; }> & Readonly<{}>, {}, {}, {}, {}, { ellipsis: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { ellipsis: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicTableCell: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { ellipsis: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; ellipsis?: boolean; width?: string; }> & Readonly<{}>, {}, {}, {}, {}, { ellipsis: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { ellipsis: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTableHead: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { ellipsis: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; ellipsis?: boolean; width?: string; }> & Readonly<{}>, {}, {}, {}, {}, { ellipsis: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { ellipsis: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicTableHead: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { ellipsis: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; ellipsis?: boolean; width?: string; }> & Readonly<{}>, {}, {}, {}, {}, { ellipsis: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { ellipsis: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTableHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableSectionElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicTableHeader: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableSectionElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTableNext: DefineSetupFnComponent, {}, {}, Record & {}, PublicProps>; export declare const unnnicTableNext: DefineSetupFnComponent, {}, {}, Record & {}, PublicProps>; export declare const UnnnicTableRow: DefineComponent, { isVersion2: ComputedRef; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, { UiTableRow: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { click: (event: KeyboardEvent | MouseEvent) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableRowElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{ onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { click: (event: KeyboardEvent | MouseEvent) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicTableRow: DefineComponent, { isVersion2: ComputedRef; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, { UiTableRow: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { click: (event: KeyboardEvent | MouseEvent) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableRowElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{ class?: HTMLAttributes["class"]; }> & Readonly<{ onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { click: (event: KeyboardEvent | MouseEvent) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicTabs: { new (...args: any[]): CreateComponentPublicInstanceWithMixins> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicTabs: { new (...args: any[]): CreateComponentPublicInstanceWithMixins> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase> & Readonly<{ "onUpdate:modelValue"?: ((payload: string | number) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string | number) => any; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTabsContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicTabsContent: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTabsExpanded: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("add" | "update:model-value" | "back" | "close-tab")[], "add" | "update:model-value" | "back" | "close-tab", PublicProps, Readonly> & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; onAdd?: ((...args: any[]) => any) | undefined; onBack?: ((...args: any[]) => any) | undefined; "onClose-tab"?: ((...args: any[]) => any) | undefined; }>, {}, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicTabsExpanded: DefineComponent, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("add" | "update:model-value" | "back" | "close-tab")[], "add" | "update:model-value" | "back" | "close-tab", PublicProps, Readonly> & Readonly<{ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined; onAdd?: ((...args: any[]) => any) | undefined; onBack?: ((...args: any[]) => any) | undefined; "onClose-tab"?: ((...args: any[]) => any) | undefined; }>, {}, {}, { UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicTabsList: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; right?(_: {}): any; }; }); export declare const unnnicTabsList: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; right?(_: {}): any; }; }); export declare const UnnnicTabsTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicTabsTrigger: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTag: DefineComponent any; close: () => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: (() => any) | undefined; onClose?: (() => any) | undefined; }>, { disabled: boolean; type: TagType; text: string; size: TagSize; scheme: string; leftIcon: string; hasCloseIcon: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const unnnicTag: DefineComponent any; close: () => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: (() => any) | undefined; onClose?: (() => any) | undefined; }>, { disabled: boolean; type: TagType; text: string; size: TagSize; scheme: string; leftIcon: string; hasCloseIcon: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const UnnnicTemplatePreview: VueComponent; export declare const unnnicTemplatePreview: VueComponent; export declare const UnnnicTemplatePreviewModal: VueComponent; export declare const unnnicTemplatePreviewModal: VueComponent; export declare const UnnnicTextArea: DefineComponent void; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, string, PublicProps, Readonly & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, { disabled: boolean; resize: "none" | "vertical"; type: "normal" | "error"; placeholder: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; message: string; modelValue: string; errors: string | string[]; maxLength: number; }, {}, {}, {}, string, ComponentProvideOptions, false, { textareaRef: HTMLTextAreaElement; }, HTMLElement>; export declare const unnnicTextArea: DefineComponent void; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, string, PublicProps, Readonly & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, { disabled: boolean; resize: "none" | "vertical"; type: "normal" | "error"; placeholder: string; label: string; size: "md" | "sm"; tooltip: TooltipProps; message: string; modelValue: string; errors: string | string[]; maxLength: number; }, {}, {}, {}, string, ComponentProvideOptions, false, { textareaRef: HTMLTextAreaElement; }, HTMLElement>; export declare const UnnnicToast: DefineComponent any; destroy: () => any; }, string, PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; onDestroy?: (() => any) | undefined; }>, { type: ToastType; button: ToastButton; title: string; description: string; timeout: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const unnnicToast: DefineComponent any; destroy: () => any; }, string, PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; onDestroy?: (() => any) | undefined; }>, { type: ToastType; button: ToastButton; title: string; description: string; timeout: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export declare const UnnnicToastManager: ToastCall; export declare const unnnicToastManager: ToastCall; export declare const UnnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const unnnicToolTip: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, PublicProps, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{ "onClick:close"?: ((...args: any[]) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "click:close": (...args: any[]) => void; }, string, { text: string; class: string; side: "top" | "right" | "bottom" | "left"; enabled: boolean; forceOpen: boolean; maxWidth: string; enableHtml: boolean; showClose: boolean; contentProps: Partial; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); export declare const UnnnicTour: DefineComponent boolean; }; }>, {}, { isTourActive: boolean; currentStep: number; maskRect: { x: number; y: number; width: number; height: number; }; }, { currentStepOptions(): unknown; stepStyle(): { top?: undefined; left?: undefined; width?: undefined; height?: undefined; } | { top: string; left: string; width: string; height: string; }; }, { start(): void; end(): void; close(): void; handleStep(step: any): Promise; nextStep(): void; updateMaskRect(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "nextStep" | "endTour")[], "close" | "nextStep" | "endTour", PublicProps, Readonly boolean; }; }>> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; onNextStep?: ((...args: any[]) => any) | undefined; onEndTour?: ((...args: any[]) => any) | undefined; }>, {}, {}, { TourMask: DefineComponent, {}, {}, { clickBlockerRects(): ({ x: string; y: string; width: string; height: any; style?: undefined; } | { x: string; y: string; width: any; height: string; style?: undefined; } | { x: string; y: any; style: { height: string; width?: undefined; }; width: string; height?: undefined; } | { x: any; y: string; style: { width: string; height?: undefined; }; height: string; width?: undefined; })[]; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; TourPopover: DefineComponent, {}, { style: {}; defaultTranslations: { close_tour: { 'pt-br': string; en: string; es: string; }; understood: { 'pt-br': string; en: string; es: string; }; }; }, {}, { updatePopoverStyle(): void; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, ("close" | "end" | "nextStep")[], "close" | "end" | "nextStep", PublicProps, Readonly> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; onEnd?: ((...args: any[]) => any) | undefined; onNextStep?: ((...args: any[]) => any) | undefined; }>, {}, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicTour: DefineComponent boolean; }; }>, {}, { isTourActive: boolean; currentStep: number; maskRect: { x: number; y: number; width: number; height: number; }; }, { currentStepOptions(): unknown; stepStyle(): { top?: undefined; left?: undefined; width?: undefined; height?: undefined; } | { top: string; left: string; width: string; height: string; }; }, { start(): void; end(): void; close(): void; handleStep(step: any): Promise; nextStep(): void; updateMaskRect(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "nextStep" | "endTour")[], "close" | "nextStep" | "endTour", PublicProps, Readonly boolean; }; }>> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; onNextStep?: ((...args: any[]) => any) | undefined; onEndTour?: ((...args: any[]) => any) | undefined; }>, {}, {}, { TourMask: DefineComponent, {}, {}, { clickBlockerRects(): ({ x: string; y: string; width: string; height: any; style?: undefined; } | { x: string; y: string; width: any; height: string; style?: undefined; } | { x: string; y: any; style: { height: string; width?: undefined; }; width: string; height?: undefined; } | { x: any; y: string; style: { width: string; height?: undefined; }; height: string; width?: undefined; })[]; }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; TourPopover: DefineComponent, {}, { style: {}; defaultTranslations: { close_tour: { 'pt-br': string; en: string; es: string; }; understood: { 'pt-br': string; en: string; es: string; }; }; }, {}, { updatePopoverStyle(): void; }, { props: { locale: { type: StringConstructor; }; translations: { type: ObjectConstructor; }; }; methods: { i18n(...args: any[]): any; }; }, ComponentOptionsMixin, ("close" | "end" | "nextStep")[], "close" | "end" | "nextStep", PublicProps, Readonly> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; onEnd?: ((...args: any[]) => any) | undefined; onNextStep?: ((...args: any[]) => any) | undefined; }>, {}, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const UnnnicUploadArea: DefineComponent never[]; }; acceptMultiple: { type: BooleanConstructor; default: boolean; }; supportedFormats: { type: StringConstructor; default: string; }; maximumUploads: { type: NumberConstructor; default: number; }; filesProgress: { type: ArrayConstructor; default: () => never[]; }; isUploading: { type: BooleanConstructor; default: boolean; }; canImport: { type: BooleanConstructor; default: boolean; }; canDelete: { type: BooleanConstructor; default: boolean; }; maxFileSize: { type: NumberConstructor; default: undefined; }; shouldReplace: { type: BooleanConstructor; default: boolean; }; subtitle: { required: false; type: StringConstructor; default: string; }; }>, {}, { currentFiles: unknown[]; }, {}, { emitFileChange(): void; modifyFile(index: any, file: any): void; removeFile(index: any): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "fileChange"[], "fileChange", PublicProps, Readonly never[]; }; acceptMultiple: { type: BooleanConstructor; default: boolean; }; supportedFormats: { type: StringConstructor; default: string; }; maximumUploads: { type: NumberConstructor; default: number; }; filesProgress: { type: ArrayConstructor; default: () => never[]; }; isUploading: { type: BooleanConstructor; default: boolean; }; canImport: { type: BooleanConstructor; default: boolean; }; canDelete: { type: BooleanConstructor; default: boolean; }; maxFileSize: { type: NumberConstructor; default: undefined; }; shouldReplace: { type: BooleanConstructor; default: boolean; }; subtitle: { required: false; type: StringConstructor; default: string; }; }>> & Readonly<{ onFileChange?: ((...args: any[]) => any) | undefined; }>, { subtitle: string; acceptMultiple: boolean; supportedFormats: string; maxFileSize: number; shouldReplace: boolean; maximumUploads: number; canImport: boolean; canDelete: boolean; files: unknown[]; filesProgress: unknown[]; isUploading: boolean; }, {}, { UnnnicDropArea: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, { dropzone: HTMLElement; file: HTMLInputElement; }, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { title?(_: {}): any; subtitle?(_: {}): any; }; }); UnnnicImportCard: DefineComponent, {}, {}, { fileIcon(): any; }, { importFile(): void; handleFileChange(event: any): void; emitDeletion(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; subtitle: string; importProgress: number; isImporting: boolean; canImport: boolean; canDelete: boolean; acceptedFormats: string; uploadIcon: string; }, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare const unnnicUploadArea: DefineComponent never[]; }; acceptMultiple: { type: BooleanConstructor; default: boolean; }; supportedFormats: { type: StringConstructor; default: string; }; maximumUploads: { type: NumberConstructor; default: number; }; filesProgress: { type: ArrayConstructor; default: () => never[]; }; isUploading: { type: BooleanConstructor; default: boolean; }; canImport: { type: BooleanConstructor; default: boolean; }; canDelete: { type: BooleanConstructor; default: boolean; }; maxFileSize: { type: NumberConstructor; default: undefined; }; shouldReplace: { type: BooleanConstructor; default: boolean; }; subtitle: { required: false; type: StringConstructor; default: string; }; }>, {}, { currentFiles: unknown[]; }, {}, { emitFileChange(): void; modifyFile(index: any, file: any): void; removeFile(index: any): void; }, ComponentOptionsMixin, ComponentOptionsMixin, "fileChange"[], "fileChange", PublicProps, Readonly never[]; }; acceptMultiple: { type: BooleanConstructor; default: boolean; }; supportedFormats: { type: StringConstructor; default: string; }; maximumUploads: { type: NumberConstructor; default: number; }; filesProgress: { type: ArrayConstructor; default: () => never[]; }; isUploading: { type: BooleanConstructor; default: boolean; }; canImport: { type: BooleanConstructor; default: boolean; }; canDelete: { type: BooleanConstructor; default: boolean; }; maxFileSize: { type: NumberConstructor; default: undefined; }; shouldReplace: { type: BooleanConstructor; default: boolean; }; subtitle: { required: false; type: StringConstructor; default: string; }; }>> & Readonly<{ onFileChange?: ((...args: any[]) => any) | undefined; }>, { subtitle: string; acceptMultiple: boolean; supportedFormats: string; maxFileSize: number; shouldReplace: boolean; maximumUploads: number; canImport: boolean; canDelete: boolean; files: unknown[]; filesProgress: unknown[]; isUploading: boolean; }, {}, { UnnnicDropArea: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, { dropzone: HTMLElement; file: HTMLInputElement; }, HTMLElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly<{}> & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, { $emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void; disabled: boolean; subtitle: string; acceptMultiple: boolean; supportedFormats: string; shouldReplace: boolean; currentFiles: unknown[]; maximumUploads: number; maxFileSize?: number | undefined; $props: { readonly disabled?: boolean | undefined; readonly subtitle?: string | undefined; readonly acceptMultiple?: boolean | undefined; readonly supportedFormats?: string | undefined; readonly shouldReplace?: boolean | undefined; readonly currentFiles?: unknown[] | undefined; readonly maximumUploads?: number | undefined; readonly maxFileSize?: number | undefined; }; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { title?(_: {}): any; subtitle?(_: {}): any; }; }); UnnnicImportCard: DefineComponent, {}, {}, { fileIcon(): any; }, { importFile(): void; handleFileChange(event: any): void; emitDeletion(): void; }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly> & Readonly<{}>, { title: string; subtitle: string; importProgress: number; isImporting: boolean; canImport: boolean; canDelete: boolean; acceptedFormats: string; uploadIcon: string; }, {}, { UnnnicButton: { new (...args: any[]): CreateComponentPublicInstanceWithMixins & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLButtonElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{}>, {}, {}, {}, {}, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, { disabled: boolean; type: ButtonType; text: string; size: ButtonSize; iconLeft: string; iconRight: string; float: boolean; iconCenter: string; iconsFilled: boolean; loading: boolean; pressed: boolean; }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { default?(_: {}): any; }; }); UnnnicIcon: DefineComponent any; mousedown: (event: Event) => any; mouseup: (event: Event) => any; }, string, PublicProps, Readonly & Readonly<{ onClick?: ((event: Event) => any) | undefined; onMousedown?: ((event: Event) => any) | undefined; onMouseup?: ((event: Event) => any) | undefined; }>, { size: IconSize; filled: boolean; icon: string | null; clickable: boolean; scheme: SchemeColor; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; }, {}, string, ComponentProvideOptions, true, {}, any>; export declare function useTheme(): { preference: Ref; resolvedTheme: ComputedRef; setTheme: (value: ThemePreference) => void; toggleTheme: () => void; }; declare type VueComponent = Component; export { }