import React from "react";
import { ColorTheme, DateRange, CopyrightStyles, Locales } from "../index";
export type MiniChartProps = {
    symbol?: string;
    width?: number | string;
    height?: number | string;
    locale?: Locales;
    dateRange?: DateRange;
    colorTheme?: ColorTheme;
    trendLineColor?: string;
    underLineColor?: string;
    underLineBottomColor?: string;
    isTransparent?: boolean;
    autosize?: boolean;
    largeChartUrl?: string;
    chartOnly?: boolean;
    children?: never;
    copyrightStyles?: CopyrightStyles;
};
declare const _default: React.NamedExoticComponent<MiniChartProps>;
export default _default;
