import { type FC, type PropsWithChildren, type ReactNode } from 'react'; type Props = PropsWithChildren<{ /** 引き金となるボタンラベル */ label: ReactNode; onOpen?: () => void; onClose?: () => void; }>; export declare const AppNaviDropdownMenuButton: FC; export {};