import type { FixedPos } from './FixedPos'; import type { PercentValue } from './PercentValue'; export declare type SlideSettings = ({ min: PercentValue; max: PercentValue; } | { min: PercentValue; fixed?: FixedPos; } | { max: PercentValue; fixed?: FixedPos; });