import React from 'react'; declare const Toggle: ({ options, activeOption, handleToggle, claimableBillsAmount, }: { options: string[]; activeOption: string; handleToggle: (newOption: string) => void; claimableBillsAmount?: string; }) => React.JSX.Element; export default Toggle;