import { UiTypes } from "@various/constants";
export interface DisposeNodeRectSize {
    view: number;
    space: number;
    container: number;
}
export interface DisposeMainRectOption {
    min: number;
    max: number;
    offset: number;
    strategy?: "Perfect" | "Disable" | "Default";
    direction: UiTypes.direction;
    orientation: 1 | -1;
}
export interface DisposeSubRectOption {
    min: number;
    max: number;
    align: UiTypes.align;
    offset: number;
    strategy?: "Perfect" | "Disable" | "Default";
}
