import React from 'react';
import { LocalGateStore } from '@cpmech/gate';
import { IStyleButton, IStyleTypeA, IconKind } from '@cpmech/rncomps';
import { IFonts } from './GateSignUpView';
interface ILocalGateSignUpViewProps {
    gate: LocalGateStore;
    iniEmail?: string;
    marginTop?: number;
    colorIcon?: string;
    colorText?: string;
    colorLink?: string;
    colorError?: string;
    styleInput?: IStyleTypeA;
    styleButton?: IStyleButton;
    buttonHeight?: number;
    buttonBorderRadius?: number;
    buttonMinWidth?: number;
    iconKind?: IconKind;
    fonts?: IFonts;
    ignoreErrors?: boolean;
}
export declare const LocalGateSignUpView: React.FC<ILocalGateSignUpViewProps>;
export {};
