export type OnLoadResult = { authenticated: boolean; address?: string; }; type Props = { onLoad: (result: OnLoadResult) => void; }; export declare function ConnectLoaderStep({ onLoad }: Props): import("react/jsx-runtime").JSX.Element; export {};