import React from "react";
import { ElementCallback } from "../interfaces/Element";
import { ScrollView, View, Text } from "../index";
interface iMakeStyleFrom {
    (baseElement: any, callback?: ElementCallback): React.ExoticComponent<{
        children?: React.ReactNode;
    }>;
    View(callback: ElementCallback): typeof View;
    Text(callback: ElementCallback): typeof Text;
    ScrollView(callback: ElementCallback): typeof ScrollView;
}
declare const _default: iMakeStyleFrom;
export default _default;
