import { IBaseProps } from './IBaseProps';
export interface ILinkUrlProps extends IBaseProps {
oldUrl: string;
newUrl: string;
pageId: string;
widgetId: string;
}
export interface ILinkTextProps extends IBaseProps {
oldText: string;
newText: string;
}