import { type CommonAction } from "@iflyrpa/share"; import { z } from "zod"; import { ShipinhaoCheckLinkValidateParamsSchema } from "./schema"; export type ShipinhaoCheckLinkValidateParams = z.infer; export { ShipinhaoCheckLinkValidateParamsSchema } from "./schema"; export interface ShipinhaoCheckLinkValidateResponse { errCode: number; errMsg: string; data?: { baseResp: { errcode: number; errmsg: string; }; title?: string; }; } export type ShipinhaoCheckLinkValidateAction = CommonAction; export declare const shipinhaoCheckLinkValidate: ShipinhaoCheckLinkValidateAction;