/**
 * Your game config
 */
export declare class BoardConfig {
    game: {
        FPS: number;
    };
    board: {
        size: {
            width: number;
            height: number;
        };
        background: string;
    };
}
