import React from 'react'; import { ServerVariable, TypeWithKey } from '../../types'; declare type ServerVariableWithKey = TypeWithKey; interface Props { variables: ServerVariableWithKey[]; identifier: string; dataIdentifier: string; } export declare const ServerVariablesComponent: React.FunctionComponent; export {};