interface LinkContextMenuProps {
    url: string;
    onSave: (url: string) => void;
    onDelete: () => void;
    onClose: () => void;
}
export interface linkFormMethods {
    clearForm: () => void;
}
export declare const LinkContextMenu: import('react').ForwardRefExoticComponent<LinkContextMenuProps & import('react').RefAttributes<unknown>>;
export {};
