import { type HTMLAttributes } from 'react'; import { type ChatTicketItemData } from './entity-cards/chat-ticket-item'; export interface ChatTicketListProps extends 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: import("react").ForwardRefExoticComponent>; export { ChatTicketList }; export type { ChatTicketItemData }; //# sourceMappingURL=chat-ticket-list.d.ts.map