export type SegmentationParams = {
    width: number;
    height: number;
};
export declare enum SegmentationLevel {
    LOW = "low",
    HIGH = "high"
}
export declare const getSegmentationParams: (level: SegmentationLevel) => SegmentationParams;
