import type { FC } from "react"; /** * 组件属性 */ export interface HiddenInfoProps { /** id,默认取 query.id */ id?: string; /** id 的字段,默认 id */ idKey?: string; /** hiddenId,默认取 query.hiddenId */ hiddenId?: string; /** hiddenId 的字段,默认 hiddenId */ hiddenIdKey?: string; /** 是否显示头部的返回,默认 true */ isShowHeaderBack?: boolean; } /** * 隐患查看组件(港务局版本) */ declare const HiddenInfo: FC; export default HiddenInfo;