export interface TopBarProgressStep { step: number; totalSteps: number; } export interface TopBarProps { showCart?: boolean; cartQuantity?: number; handleCart?: () => void; showBack?: boolean; handleBack?: () => void; showClose?: boolean; handleClose?: () => void; showSearch?: boolean; handleSearch?: () => void; showTitle?: boolean; title?: string; progressStep?: TopBarProgressStep; boldTitle?: boolean; } export declare const TopBar: ({ showCart, cartQuantity, handleCart, showBack, handleBack, showClose, handleClose, showTitle, title, showSearch, handleSearch, progressStep, boldTitle, }: TopBarProps) => JSX.Element;