import { ErrorBoundary } from "@prismicio/editor-ui"; import type { EmbedContent } from "@prismicio/types-internal/lib/content"; import { type RefObject } from "react"; interface FooterProps { debouncedUrl: string; content: EmbedContent | undefined; onContentChange: (content?: EmbedContent) => void; selected?: boolean; errorBoundary: RefObject; onError: () => void; } export declare function Footer(props: FooterProps): JSX.Element | null; export {};