import * as React from 'react'; export interface ChatListEmptyStateProps { /** Centred 24px glyph — rendered muted (`ods-text-secondary`). Pass the icon * already sized (e.g. ``). */ icon: React.ReactNode; /** Title line (`h4`). */ title: React.ReactNode; /** Caption line under the title (`h6`). Omitted → title alone. */ description?: React.ReactNode; /** Appended to the root element. */ className?: string; } /** * Shared empty state for the chat-list surfaces — the "Current Chats" rail and * the Chat Archive page (Figma node 113:60939). A centred 24px muted glyph over * a title (`h4`) + caption (`h6`), both in `ods-text-secondary`. Kept in one * place so the two lists can't drift apart. */ export declare function ChatListEmptyState({ icon, title, description, className, }: ChatListEmptyStateProps): React.JSX.Element; //# sourceMappingURL=chat-list-empty-state.d.ts.map