import React, { type RefObject } from 'react'; import type { DashboardApi, DashboardJSON, Mode } from '@splunk/dashboard-types'; export interface HeaderProps { definition: DashboardJSON; mode: Mode; dashboardApi: DashboardApi; titleRef?: RefObject; descRef?: RefObject; handleRef?: RefObject; } declare const DashboardHeader: React.ForwardRefExoticComponent>; export default DashboardHeader; //# sourceMappingURL=Header.d.ts.map