import React, { FC } from 'react'; import './input-table-item.component.scss'; export declare type InputTableItemPropsType = { className?: string; label: string; style?: React.CSSProperties; before?: React.ReactNode; after?: React.ReactNode; onHoverAfter?: boolean; onMouseEnter?: () => void; onMouseLeave?: () => void; tooltipTitle?: string; tooltipContent?: string; tooltipMenuWidth?: string; viewType?: 'primary' | 'secondary'; children?: React.ReactNode; }; export declare const InputTableItem: FC;