import { type FC, type FunctionComponent, type JSX, type ReactNode } from 'react'; type Props = { button: JSX.Element; disabledReason: { icon?: FunctionComponent; message: ReactNode; }; }; export declare const DisabledReason: FC; export {};