type Label = { text: string; status?: string; subText?: string; }; export interface LabelsWithBulletsProps { labels: Label[]; listStyleType?: "disc" | "circle" | "decimal" | "none" | "square"; style?: React.CSSProperties; } declare const LabelsWithBullets: (props: LabelsWithBulletsProps) => import("react/jsx-runtime").JSX.Element; export default LabelsWithBullets;