import type { ChatMessageContent } from './chat-message-content.js';
/**
 * Representation of the 'SystemChatMessage' schema.
 */
export type SystemChatMessage = {
    role: 'system';
    content: ChatMessageContent;
};
//# sourceMappingURL=system-chat-message.d.ts.map