import React from 'react';
interface GameLayoutProps {
    children: React.ReactNode;
    padding?: number;
    centered?: boolean;
}
export declare const GameLayout: React.FC<GameLayoutProps>;
export {};
