import React from "react"; interface TimezoneSelectProps { value?: string; onChange: (tz: string | undefined) => void; className?: string; } declare const TimezoneSelect: React.FC; export { TimezoneSelect };