import React from 'react'; type HeaderLeftRefreshButtonProps = { refreshing: boolean; onRefresh: () => void; }; export declare const HeaderLeftRefreshButton: ({ refreshing, onRefresh, }: HeaderLeftRefreshButtonProps) => React.JSX.Element; export {};