import * as React from 'react'; export interface NotificationCardSkeletonProps extends React.HTMLAttributes { /** Number of notification rows to display (mirrors `maxItems` on NotificationCard) */ rows?: number; /** Whether to show the "View all" footer button placeholder */ showViewAll?: boolean; } /** * Loading placeholder for `NotificationCard`. * * @description * Mirrors the visual layout of `NotificationCard`: header with title + badge, * a list of notification rows (icon + title + message + timestamp), and an * optional "View all" footer. * * @example * ```tsx * {isLoading ? : } * ``` */ export declare function NotificationCardSkeleton({ rows, showViewAll, className, ...props }: NotificationCardSkeletonProps): import("react/jsx-runtime").JSX.Element;