UNPKG

@dndbuilder.com/react

Version:

Drag and drop builder for React

17 lines (16 loc) 524 B
import { SettingsType } from '../../types'; import { Unit } from '../../types/style'; import { FC, HTMLAttributes, ReactNode } from 'react'; export interface SliderControlProps extends HTMLAttributes<HTMLDivElement> { step?: number; min?: number; max?: number; units?: Unit[]; label?: ReactNode; type: SettingsType; fieldName: string; mode?: string; responsive?: boolean; } export declare const SliderUnitControl: FC<SliderControlProps>; //# sourceMappingURL=slider-unit.control.d.ts.map