import React from 'react'; import { IconButtonProps } from '@mui/material/IconButton'; export interface LinkIconButtonProps extends IconButtonProps { to?: string; } export declare const LinkIconButton: ({ children, to, size, ...p }: LinkIconButtonProps) => React.JSX.Element;