import '@oicl/openbridge-webcomponents/dist/components/title-container/title-container.js'; import type { ObcTitleContainerState } from '@oicl/openbridge-webcomponents/dist/components/title-container/title-container.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; state?: ObcTitleContainerState; titleValue?: string; label?: string; } export interface Events { onActionClick?: (event: CustomEvent<{ action: number; }>) => void; } export interface Slots { icon?: Snippet; title?: Snippet; label?: Snippet; actions?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcTitleContainer: import("svelte").Component<$$ComponentProps, { ObcTitleContainerState: typeof ObcTitleContainerState; }, "">; type ObcTitleContainer = ReturnType; export default ObcTitleContainer;