amis-rpc-design/node_modules/rc-slider/es/Tracks/index.d.ts
2023-10-07 19:42:30 +08:00

11 lines
390 B
TypeScript

import * as React from 'react';
import type { OnStartMove } from '../interface';
export interface TrackProps {
prefixCls: string;
style?: React.CSSProperties | React.CSSProperties[];
values: number[];
onStartMove?: OnStartMove;
startPoint?: number;
}
export default function Tracks(props: TrackProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;