import { default as React } from 'react'; export interface CardPolicyListSkeletonRowProps { /** Optional positional discriminator suffixed onto every internal test-id. */ pendingIndex?: number; } /** * Single-row skeleton for `CardPolicyListPage`. Visually identical to the * row shape produced by `CardPolicyListPageSkeleton` but rendered standalone * so it can be injected at the top of an already-populated list while a * client-driven `createCardPolicyTemplates` request kicked off from AI CFO * is still in flight. Once the response lands the host removes this and * the real `CardPolicyListRow` rendered for the newly-created template * replaces it. */ declare const CardPolicyListSkeletonRow: React.FC; export default CardPolicyListSkeletonRow;