import { FC } from 'react'; export interface BackButtonProps { onClick: () => void; } declare const BackButton: FC; export default BackButton;