/// export declare type InfoButtonProps = { secondary?: boolean; }; export declare type InfoButtonAction = { text: string; action: string | (() => void); secondary?: boolean; }; export declare type SimpleInfoProps = { paragraphs: string[]; buttons?: InfoButtonAction[]; footer: string; }; export default function Info(props: SimpleInfoProps): JSX.Element;