import * as React from 'react'; import { ClockViewType } from '../../constants/ClockType'; import { WithStyles, Theme } from '@material-ui/core/styles'; export interface ClockProps extends WithStyles { type: ClockViewType; value: number; onChange: (value: number, isFinish?: boolean) => void; ampm?: boolean; minutesStep?: number; children: React.ReactElement[]; } export declare class Clock extends React.Component { static propTypes: any; static defaultProps: { ampm: boolean; minutesStep: number; }; isMoving: boolean; setTime(e: any, isFinish?: boolean): void; handleTouchMove: (e: React.TouchEvent) => void; handleTouchEnd: (e: React.TouchEvent) => void; handleMove: (e: React.MouseEvent) => void; handleMouseUp: (e: React.MouseEvent) => void; hasSelected: () => boolean; render(): JSX.Element; } export declare const styles: (theme: Theme) => Record<"container" | "clock" | "squareMask" | "pin", import("@material-ui/core/styles/withStyles").CSSProperties | import("@material-ui/core/styles/withStyles").CreateCSSProperties<{}> | ((props: {}) => import("@material-ui/core/styles/withStyles").CreateCSSProperties<{}>)>; declare const _default: React.ComponentType<(Pick & import("@material-ui/core/styles").StyledComponentProps<"container" | "clock" | "squareMask" | "pin">) | (Pick, "children" | "value" | "onChange" | "type" | "ampm" | "minutesStep"> & import("@material-ui/core/styles").StyledComponentProps<"container" | "clock" | "squareMask" | "pin">)>; export default _default;