import '@oicl/openbridge-webcomponents/dist/components/vendor-button/vendor-button.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; /** The URL of the image to display as the button's content. Typically this should be a logo or brand image representing a vendor or external service. */ imageSrc?: string; /** Alternative text for the image, used for accessibility. This should describe the logo or vendor for screen readers. */ alt?: string; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcVendorButton: import("svelte").Component<$$ComponentProps, {}, "">; type ObcVendorButton = ReturnType; export default ObcVendorButton;