export interface Candle {
    color?: {
        up?: string;
        down?: string;
        theme?: string;
    };
    field?: {
        time?: string;
        value?: string;
    };
    price?: Price[];
    volume?: Volume[];
    up?: string;
    down?: string;
    fallback?: any;
    style?: any;
    fit?: boolean;
}
export interface Price {
    time: number | string;
    open: number | string;
    high: number | string;
    low: number | string;
    close: number | string;
}
export interface Volume {
    time: number | string;
    value: number | string;
    type?: string;
}
export declare const Candle: (props: Candle) => import("react").JSX.Element;
declare const _default: import("react").MemoExoticComponent<(props: Candle) => import("react").JSX.Element>;
export default _default;
//# sourceMappingURL=Candle.d.ts.map