import type { AuthMeta, WorkspaceEventBus } from '@scalar/workspace-store/events'; import type { XScalarEnvironment } from '@scalar/workspace-store/schemas/extensions/document/x-scalar-environments'; import type { ServerObject } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document'; import type { MergedSecuritySchemes } from '../../../../v2/blocks/scalar-auth-selector-block/index.js'; import type { SecuritySchemeOption } from '../../../../v2/blocks/scalar-auth-selector-block/helpers/security-scheme.js'; type __VLS_Props = { /** The current environment configuration */ environment: XScalarEnvironment; /** Controls border display for static (non-collapsible) layouts */ isStatic: boolean; /** Available authentication scheme options */ selectedSchemeOptions: SecuritySchemeOption[]; /** Index of the currently active authentication tab */ activeAuthIndex: number; /** Proxy URL */ proxyUrl: string; /** OpenAPI security scheme definitions */ securitySchemes: MergedSecuritySchemes; /** Current server configuration */ server: ServerObject | null; /** Event bus for authentication updates */ eventBus: WorkspaceEventBus; /** Metadata for authentication context */ meta: AuthMeta; }; declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, { activeScheme: import("vue").ComputedRef; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default; //# sourceMappingURL=RequestAuthDataTable.vue.d.ts.map