/** The details of a transition screen. */
export interface TransitionScreenDetails {
  /** The ID of the screen. */
  id: string;
  /** The name of the screen. */
  name?: string;
}
