import type React from "react";
export interface ArdacityLandingPageOneProps {
    onConnectWallet?: () => Promise<void>;
    onDisconnectWallet?: () => Promise<void>;
    walletAddress?: string;
    isConnecting?: boolean;
}
export declare const ArdacityLandingPageOne: React.FC<ArdacityLandingPageOneProps>;
export default ArdacityLandingPageOne;
