import { ButtonProps } from '../ui/Button/interfaces.js'; export declare const BackButton: ({ basePath, children, ...buttonProps }: BackButtonProps) => import("react/jsx-runtime").JSX.Element; interface Props { basePath: string; } export type BackButtonProps = Props & ButtonProps; export {};