import React, { MouseEventHandler } from 'react'; /** * Input Title Component */ export interface IInputTitle { /** Passed down classname. */ className?: string; /** Label input is active */ isActive?: boolean; /** Label input state is errored */ isError?: boolean; /** Label input state is required */ isRequired?: boolean; /** Passed inline styles */ style?: React.CSSProperties; /** Mandatory title */ title?: string; /** add tooltip at the end of title */ tooltip?: { text?: string; image?: string; }; /** Default label onclick event*/ onClick?: MouseEventHandler; } export declare const InputTitle: React.FC;