import type { ValuesOf } from '../../Types/ValuesOf'; /** * `PanState` - The `PanState` object is used to describe the different types of pan states. * * @public */ export declare const PanState: { readonly None: "none"; readonly Left: "left"; readonly Right: "right"; }; /** * @public */ export type PanState = ValuesOf; //# sourceMappingURL=PanState.d.ts.map