import * as React from 'react';
import { QueryPerFacetPlotsCardProps } from './QueryPerFacetPlotsCard';
import { SingleQueryFacetPlotsCardsProps } from './SingleQueryFacetPlotsCards';
export declare type QueryFacetPlotsCardsProps = QueryPerFacetPlotsCardProps | SingleQueryFacetPlotsCardsProps;
export declare type FeaturedDataPlotsProps = {
    configs: QueryFacetPlotsCardsProps[];
    rgbIndex?: number;
    sql?: string;
    explorePagePath?: string;
};
declare const FeaturedDataPlots: React.FunctionComponent<FeaturedDataPlotsProps>;
export default FeaturedDataPlots;
