import type { Property } from '../../analytics/types.js'; interface Props { /** Page title (required) */ title: string; /** Optional subtitle */ subtitle?: string; /** Property for styling (io, space, agency, ltd, lms) */ property?: Property; /** Background variant */ variant?: 'default' | 'dark' | 'gradient'; /** Additional CSS classes */ class?: string; } declare const OGImage: import("svelte").Component; type OGImage = ReturnType; export default OGImage;