import React from "react";
import { TextStyle, ViewStyle } from "react-native";
export declare enum SeparatorType {
    Dot = ".",
    Comma = ","
}
export interface VndProps {
    value: number | string;
    unit?: string;
    style?: TextStyle;
    unitStyle?: TextStyle;
    containerStyle?: ViewStyle;
    separator?: SeparatorType;
}
declare const Vnd: React.FC<VndProps>;
export default Vnd;
