import { SvelteComponent } from "svelte"; import type { ScreenOrientationChangePayload } from '@manapotion/core'; declare const __propDef: { props: Record; events: { screenOrientationChange: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type ScreenOrientationListenerProps = typeof __propDef.props; export type ScreenOrientationListenerEvents = typeof __propDef.events; export type ScreenOrientationListenerSlots = typeof __propDef.slots; export default class ScreenOrientationListener extends SvelteComponent { } export {};