import { Action } from '../../../types'; export interface ConnectButtonRendererProps { action?: Action; children?: (renderProps: { show: () => void; hide: () => void; chain?: any; unsupported: boolean; isConnected: boolean; isConnecting: boolean; address?: string; truncatedAddress?: string; }) => React.ReactNode; } export declare function ConnectButtonRenderer(props: ConnectButtonRendererProps): import("react/jsx-runtime").JSX.Element | null;