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