import { DataProviderInterface } from "../DataProvider.types"; import { NativeFilter } from "./Embedded/NativeFilter"; import { UiConfigType } from "./Embedded"; export declare type DashboardProps = { /** The data provider to use for the dashboard. */ dataProvider?: DataProviderInterface; /** The uuid of the dashboard to display. */ uuid: string; /** Superset domain. */ domain: string; /** Superset dashboard config */ uiConfig?: UiConfigType; /** You can provide guest token directly without using dataProvider. */ guestToken?: string; /** List of filters to apply to the dashboard. */ nativeFilters?: NativeFilter[]; };