import { type ComponentType, type FC, type PropsWithChildren } from 'react'; import type { ComponentProps as IconProps } from '../Icon'; export type AppNaviCustomTagProps = PropsWithChildren<{ /** このボタンのカスタムタグ */ tag: ComponentType; /** 表示するアイコンタイプ */ icon?: ComponentType; /** アクティブ状態であるかどうか */ current?: boolean; }> & { [key: string]: any; }; export declare const AppNaviCustomTag: FC;