import { GameServer, GameServerProps, IGameServer } from '../GameServer/GameServer';
import { Construct } from 'constructs';
/**
 * (experimental) Constructor properties that define the ValheimServer object.
 *
 * @experimental
 */
export interface ValheimServerProps extends GameServerProps {
}
/**
 * (experimental) Defines the overall expected shape of ValheimServer objects.
 *
 * @experimental
 */
export interface IValheimServer extends IGameServer {
}
/**
 * (experimental) A static EC2 instance with an elastic IP address, running a Valheim dedicated server.
 *
 * @experimental
 */
export declare class ValheimServer extends GameServer {
    /**
     * @experimental
     */
    constructor(scope: Construct, id: string, props: ValheimServerProps);
}
