import { UserResponseProps } from '../components/UserResponse'; import { SystemResponseProps } from '../components/SystemResponse'; export declare enum TurnType { USER = "user", SYSTEM = "system" } export interface UserTurnProps extends UserResponseProps { id: string; type: TurnType.USER; } export interface SystemTurnProps extends Omit { id: string; type: TurnType.SYSTEM; timestamp: number; } export type TurnProps = UserTurnProps | SystemTurnProps; //# sourceMappingURL=turn.d.ts.map