import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react'; export interface NavPanelBackProps extends ButtonHTMLAttributes { ref?: Ref; children: ReactNode; } export declare const NavPanelBack: FC;