import type { OpenAPIV3_1 } from 'openapi-types';
import type { DocumentContext } from '../../types';
import type { Assembler } from '..';
export interface ServerConfig {
    url: string;
    description?: string;
    variables?: Record<string, OpenAPIV3_1.ServerVariableObject>;
}
export declare class DocumentServerAssembler implements Assembler.Document {
    assemble(context: DocumentContext): void;
    private _getServers;
}
//# sourceMappingURL=server.d.ts.map