interface Content { text: string; subtext?: string; } export interface Props { contents: Content[]; style?: React.CSSProperties; } declare const ItemWithMultiTextAndSubtext: (props: Props) => import("react/jsx-runtime").JSX.Element; export default ItemWithMultiTextAndSubtext;