export interface EmbeddableFooterProps { /** * Title to display next to ICIJ logo. */ title?: string; /** * Lead sentence to display next to the title. */ lead?: string; /** * Minimum height for the iframe generated in the embed form. */ iframeMinHeight?: number; /** * Minimum width for the iframe generated in the embed form. */ iframeMinWidth?: number; /** * Target of the ICIJ logo and title links. */ homeUrl?: string; /** * Sharing option values to bind to the sharing-options component in the bottom-right corner. */ sharingOptionsValues?: Record; /** * Hide the divider (right border) next to the brand. */ hideDivider?: boolean; /** * Height of the logo in pixels. */ logoHeight?: number | string; } declare var __VLS_6: {}, __VLS_8: { lead: string; }, __VLS_10: { sharingOptionsValues: Record; }; type __VLS_Slots = {} & { title?: (props: typeof __VLS_6) => any; } & { default?: (props: typeof __VLS_8) => any; } & { 'sharing-button'?: (props: typeof __VLS_10) => any; }; declare const __VLS_base: import('../../../node_modules/vue').DefineComponent & Readonly<{}>, { title: string; iframeMinHeight: number; iframeMinWidth: number; lead: string; homeUrl: string; sharingOptionsValues: Record; hideDivider: boolean; logoHeight: number | string; }, {}, {}, {}, string, import('../../../node_modules/vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };