import type { DeepReadonly } from 'vue'; import type { WorkspaceSettingsResponse as WorkspaceSettings } from '../../types/schemas/chat/workspace-settings.js'; import type { ChatConfigurationSavePayload, ChatConfigurationTab } from '../../types/workspace-settings.js'; type __VLS_Props = { open: boolean; settings?: DeepReadonly | WorkspaceSettings | null; initialTab?: ChatConfigurationTab; saving?: boolean; showCredentialsTab?: boolean; }; declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { save: (payload: ChatConfigurationSavePayload) => any; "update:open": (value: boolean) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onSave?: ((payload: ChatConfigurationSavePayload) => any) | undefined; "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, { initialTab: ChatConfigurationTab; saving: boolean; showCredentialsTab: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;