import { SvelteComponent } from "svelte"; declare const __propDef: { props: { /** The rotation in radians */ th: number; /** Fires when orientation changes with the new value in radians */ onChange?: ((th: number) => void) | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type OrientationProps = typeof __propDef.props; export type OrientationEvents = typeof __propDef.events; export type OrientationSlots = typeof __propDef.slots; /** An editable 2d rotation input, presented to the user in degrees */ export default class Orientation extends SvelteComponent { } export {};