import { JSX } from 'solid-js'; type SegmentedButtonProps = { disabled?: boolean; children: JSX.Element; } & JSX.HTMLAttributes; declare const SegmentedButton: (props: SegmentedButtonProps) => JSX.Element; export { SegmentedButton, type SegmentedButtonProps };