import * as React from 'react'; import { type ChatTicketItemData } from './entity-cards/chat-ticket-item'; export interface ChatTicketListProps extends React.HTMLAttributes { tickets: ChatTicketItemData[]; onTicketClick?: (ticketId: string) => void; /** Show skeleton placeholder rows instead of tickets while loading. */ isLoading?: boolean; /** Number of skeleton rows rendered while `isLoading`. Defaults to 5. */ skeletonCount?: number; } declare const ChatTicketList: React.ForwardRefExoticComponent>; export { ChatTicketList }; export type { ChatTicketItemData }; //# sourceMappingURL=chat-ticket-list.d.ts.map