import React from 'react'; interface LabelTextProps { title: string; theme?: string; parentId?: string; } declare const LabelText: ({ title, theme, parentId }: LabelTextProps) => React.JSX.Element; export default LabelText;