import type { Process } from "../../../containers/modals/process/Process";
export interface Connect extends Omit<Process, "process"> {
    process?: boolean | null;
    timer?: number;
    texts?: {
        chain?: Texts;
        wallet?: Texts;
        close?: string;
        back?: string;
        goBack?: string;
        ok?: string;
    };
    chains?: any;
    wallets?: any;
    resolver?: {
        chain?: Function;
        wallet?: Function;
    };
    config?: object;
    onClose: Function;
    onChain?: Function;
    onWallet?: Function;
    onConnect?: Function;
    onError?: Function;
    onBack?: Function;
}
export interface Texts {
    title?: string;
    sub?: string;
}
export default function Connect(props: Connect): import("react").JSX.Element;
//# sourceMappingURL=Connect.d.ts.map