import '@oicl/openbridge-webcomponents/dist/components/form-container/form-container.js'; import type { ObcFormContainerType } from '@oicl/openbridge-webcomponents/dist/components/form-container/form-container.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; type?: ObcFormContainerType; contentTitle?: string; } export interface Events { } export interface Slots { title?: Snippet; contentTitle?: Snippet; children?: Snippet; footer?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcFormContainer: import("svelte").Component<$$ComponentProps, { ObcFormContainerType: typeof ObcFormContainerType; }, "">; type ObcFormContainer = ReturnType; export default ObcFormContainer;