import { ESPlayerAspectRatio } from "./ESPlayerAspectRatio";
import { ESIPlayerManager } from "../core/ESIPlayerManager";
export interface ESPlayerAspectRatioManager extends ESIPlayerManager {
    getAspectRatio(): ESPlayerAspectRatio;
    setAspectRatio(aspectRatio: ESPlayerAspectRatio): void;
}
export declare function createESPlayerAspectRatioManager(): ESPlayerAspectRatioManager;
