import { components } from '@kong/kongponents'; type ComponentKeys = keyof typeof components; type ExcludedComponentKeys = Exclude; export interface ModuleOptions { components?: { /** * List of component names to include in auto-registration. If unset or empty, all components will be included. * @default [] */ include?: ComponentKeys[]; /** * List of component names to exclude from automatic registration * @default [] */ exclude?: ExcludedComponentKeys[]; }; /** * Whether to register provided composables. * For example, you can access the included `useToast` composable. * @default true */ composables?: boolean; } declare const _default: import("nuxt/schema").NuxtModule; export default _default;