@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
25 lines (24 loc) • 875 B
text/typescript
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory.js';
import { RootProps } from './swap.types.js';
export interface SwapRootBaseProps extends RootProps, PolymorphicProps {
}
export interface SwapRootProps extends SwapRootBaseProps,
/**
* @vue-ignore
*/
HTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<SwapRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SwapRootProps> & Readonly<{}>, {
swap: boolean;
lazyMount: boolean;
unmountOnExit: boolean;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};