import { FC, ReactNode } from 'react'; export type ClickableNavigationButtonProps = { onClick?: () => void; children?: ReactNode; }; export type ClickableNavigationLinkProps = { to?: string; children?: ReactNode; }; export declare const ClickableNavigationLink: FC; export declare const ClickableNavigationButton: FC;