import { FC } from 'react';
export interface NewTokenProps {
    setNewToken?: (x: any) => void;
    module?: any;
    setActiveTab?: any;
}
interface CreateTokenForm {
    name: string;
    symbol: string;
    icon: File | null;
    decimals: string;
}
export declare const DEFAULT_VALUES: CreateTokenForm;
export declare const NewToken: FC<NewTokenProps>;
export {};
