import { App } from 'vue'; import { DeepPartialConfig } from './defaultConfig'; declare function create({ components, themes }: { components?: any[] | Record; themes?: Record; }): (app: App, config: DeepPartialConfig) => void; export default create;