import { type PropsWithChildren, FC } from "react"; export type SegmentedItem = { id?: string; label: string; value: string; disabled?: boolean; className?: string; activeClassName?: string; disabledClassName?: string; }; export interface SegmentedButtonProps { buttons: SegmentedItem[]; value?: string; onChange?: (value: string) => void; id?: string; } export declare const SegmentedButton: FC>; //# sourceMappingURL=segmented.d.ts.map