import { type LinkSubmitParams } from "../../../../forms/Link.js"; import "./widget.css"; export type LinkPlaceholderWidgetProps = { onCancel: () => void; onSubmit: (params: LinkSubmitParams) => void; }; export declare const LinkPlaceholderWidget: React.FC;