import React from 'react'; import type { Mode } from '@splunk/dashboard-types'; export interface TitleContainerProps { children?: React.ReactNode; isExpanded: boolean; mode: Mode; onValueChange: (value?: string) => void; titleRef?: React.Ref; value?: string; } export declare const TitleContainer: ({ children, isExpanded, mode, onValueChange, titleRef, value, }: TitleContainerProps) => JSX.Element | null; //# sourceMappingURL=TitleContainer.d.ts.map