/// import { AccountSectionProps } from '@open-tender/ui'; declare const AccountSection: ({ title, subtitle, path, hasMore, navigate, content, children, type }: { title: string; subtitle?: string; path: string; hasMore: boolean; navigate: (route: string) => void; content: React.ReactNode; children: (props: AccountSectionProps) => React.ReactNode; type: 'rewards' | 'orders'; }) => import("react").ReactNode; export default AccountSection;