import { ElementWrapper } from '@awsui/test-utils-core/dom';
import CommonChartWrapper from '../charts';
export default class MixedChartWrapper extends CommonChartWrapper {
    static rootSelector: string;
    findFilterContainer(): ElementWrapper | null;
    findChart(): ElementWrapper | null;
    findSeries(): Array<ElementWrapper>;
    findXAxisTitle(): ElementWrapper | null;
    findYAxisTitle(): ElementWrapper | null;
    findXTicks(): Array<ElementWrapper>;
    findYTicks(): Array<ElementWrapper>;
}
