import React from 'react'; import { ButtonProps } from '@mui/material/Button'; export interface LinkButtonProps { to: string; color?: string; } export declare const LinkButton: ({ children, to, size, ...p }: React.PropsWithChildren) => React.ReactElement;