import { RgbColor } from "@aurigma/design-atoms-model/Colors/RgbColor";
import { PlaceholderFitModeType } from "../../Viewer/Interfaces";
export interface IPlaceholderHandlerOptions {
    isCropMode?: boolean;
    fitModeType?: PlaceholderFitModeType;
    emptyBorderWidth?: number;
    emptyBorderColor?: RgbColor;
}
