import { FC } from 'react'; export interface SignInDialogProps { open: boolean; handleOpenDialog: (open: boolean) => void; address?: string; allowedEns: 'all' | 'claimable' | string[]; logo?: string; disableOverlay?: boolean; dev?: boolean; local?: boolean; logout?: () => void; } export declare const SignInDialog: FC; //# sourceMappingURL=index.d.ts.map