import { IBaseProps } from './IBaseProps';
export interface ICursorProps extends IBaseProps {
    position: number;
}
