export type Position = 'start' | 'middle' | 'end'; export interface TitleBarOptions { className: string; height: number; theme: Theme; } export interface Theme { bgPrimary: string; bgSecondary: string; fontPrimary: string; fontSecondary: string; } export declare const TitleBarOptionsDefault: TitleBarOptions; export type InnerData = { type: 'src' | 'html'; data: string; } | { type: 'element'; data: Element; };