import * as React from "react"; import * as PropTypes from "prop-types"; export interface SlideGroupProps { groupSize: number; initialGroup?: number; disableDrag?: boolean; } export declare const SlideGroupPropTypes: { [P in keyof SlideGroupProps]: PropTypes.Validator; }; export declare class SlideGroup extends React.Component { static readonly propTypes: { groupSize: PropTypes.Validator; initialGroup?: PropTypes.Validator; disableDrag?: PropTypes.Validator; }; render(): React.ReactNode; }