import { FC, PropsWithChildren } from "react"; export interface LinkButtonProps { readonly href: string; readonly className?: string; readonly expand?: boolean; } export declare const LinkButton: FC>;