import React from 'react'; interface SwitchFooterProps { buttonText: string; activeOption: string; leftOption: string; rightOption: string; label?: string; onCtaClick: () => void; onToggleClick: () => void; } declare const SwitchFooter: React.FC; export { SwitchFooter };