import * as React from 'react'; interface ICententProps { userId: number; callApiGetCheckinStatus?: Function; callApiPostCheckinStatus?: Function; callApiPutCheckinUpdateStatus?: Function; callApiGetListShifts?: Function; callApiGetListDepartment?: Function; } export declare class Content extends React.Component { private _mounted; constructor(props: any); componentDidMount(): void; componentWillUnmount(): void; private getStatusTimekeeping; private getListShifts; private getListDepartment; private onClickTimekeeping; render(): JSX.Element; } export {};