import * as Yup from 'yup';
declare const CreateTokenSchema: Yup.ObjectSchema<{
    name: string;
    symbol: string;
    icon: any;
    decimals: string;
}, Yup.AnyObject, {
    name: undefined;
    symbol: undefined;
    icon: any;
    decimals: undefined;
}, "">;
export default CreateTokenSchema;
