import { default as React } from 'react';
import { IconButtonProps } from '../../chakra/icon-button';
export interface BackToButtonProps extends IconButtonProps {
    href?: string;
    hint?: string;
}
export declare const BackToButton: ({ href, hint, boxSize, ...rest }: BackToButtonProps) => React.JSX.Element;
