/** * The addresses a form runs on: a list of text boxes and nothing else. * * No match dropdown, no exclusions, no mode switch — an author writes down where * the form goes, one line each, the way they'd say it out loud. An empty list is * how "everywhere" is said, so there is no separate state for it to fall out of * sync with. */ export declare function UrlTargetingEditor({ urls, onChange, }: { urls: string[] | undefined; onChange: (urls: string[] | undefined) => void; }): import("react").JSX.Element;