import type { Snippet } from 'svelte'; export type PhoneFrameSize = 'sm' | 'md' | 'lg'; interface PhoneFrameProps { size?: PhoneFrameSize; notch?: boolean; homeIndicator?: boolean; /** Side volume / power buttons (phone silhouette) */ buttons?: boolean; /** * Keep a fixed phone height (aspect ratio) and scroll content inside. * Turn off only if you manage overflow yourself. */ scrollable?: boolean; class?: string; children?: Snippet; } declare const PhoneFrame: import("svelte").Component; type PhoneFrame = ReturnType; export default PhoneFrame;