import type { ParseContext } from '../../context/ParseContext.js'; import type { OpenAPIV3 } from 'openapi-types'; import { OasServerVariable } from './ServerVariable.js'; type ToServerVariablesV3Args = { serverVariables: Record; context: ParseContext; }; export declare const toServerVariablesV3: ({ serverVariables, context }: ToServerVariablesV3Args) => Record; type ToOptionalServerVariablesV3Args = { serverVariables: Record | undefined; context: ParseContext; }; export declare const toOptionalServerVariablesV3: ({ serverVariables, context }: ToOptionalServerVariablesV3Args) => Record | undefined; type ToServerVariableV3Args = { serverVariable: OpenAPIV3.ServerVariableObject; context: ParseContext; }; export declare const toServerVariableV3: ({ serverVariable, context }: ToServerVariableV3Args) => OasServerVariable; export {}; //# sourceMappingURL=toServerVariableV3.d.ts.map