import { PlotProps } from './PlotlyPlot'; import { BirdsEyePlotData } from '../types/plots'; import { CSSProperties } from '@emotion/serialize'; export interface BirdsEyePlotProps extends PlotProps { /** Label for dependent axis. Defaults to '' */ dependentAxisLabel?: string; /** bracket line width, default is 2 */ bracketLineWidth?: number; /** bracket head size, default is 0.15 */ bracketHeadSize?: number; /** specifies the background color of the actual graph/plot, default is white */ plotBgColor?: CSSProperties['backgroundColor']; /** specifies the background color of the container for all parts of the graph/plot, including the axes and labels; * defaults to white */ paperBgColor?: CSSProperties['backgroundColor']; } /** A Plotly-based Barplot component. */ export default function BirdsEyePlot({ data, dependentAxisLabel, bracketLineWidth, bracketHeadSize, plotBgColor, paperBgColor, ...restProps }: BirdsEyePlotProps): JSX.Element; //# sourceMappingURL=BirdsEyePlot.d.ts.map