import { UIResizePolicy } from "./UIResizePolicy"; /** Scales by width with orientation-specific targets */ export declare class UIResizePolicyFixedWidth extends UIResizePolicy { private fixedWidthLandscapeInternal; private fixedWidthPortraitInternal; /** * Creates fixed width resize policy. * * @param fixedWidthLandscape - Target width when landscape * @param fixedWidthPortrait - Target width when portrait */ constructor(fixedWidthLandscape: number, fixedWidthPortrait: number); /** Target width when landscape */ get fixedWidthLandscape(): number; /** Target width when portrait */ get fixedWidthPortrait(): number; /** Target width when landscape */ set fixedWidthLandscape(value: number); /** Target width when portrait */ set fixedWidthPortrait(value: number); calculateScale(width: number, height: number): number; }