import { CustomerIdentifyCustomer } from '@open-tender/types';
import React from 'react';
import { Handlers, ScreenConfig } from '../../types';
declare const Account: ({ config, handlers, customer, isLoading, renderHeader, renderLoader, renderRewardsSection, renderRecentOrdersSection }: {
    config: ScreenConfig;
    handlers: Handlers;
    isLoading: boolean;
    customer: CustomerIdentifyCustomer;
    renderHeader: () => React.ReactNode;
    renderLoader: () => React.ReactNode;
    renderRewardsSection: () => React.ReactNode;
    renderRecentOrdersSection: () => React.ReactNode;
}) => React.JSX.Element;
export default Account;
