import React from 'react'; declare function LabelTexts(props: IProps): React.JSX.Element; export default LabelTexts; export interface IProps { title: string; change: Function; list: IList; paddingSize: string; wrapStyle: React.CSSProperties; } export interface IList { key: string; title: string; }