import * as React from 'react'; export interface FeatureCardSkeletonProps extends React.HTMLAttributes { /** Whether to show the footer action button placeholder */ showAction?: boolean; } /** * Loading placeholder for `FeatureCard`. * * @description * Mirrors the visual layout of `FeatureCard`: icon block + title + badge in * the header, description text in content, and an optional action button footer. * * @example * ```tsx * {isLoading ? : } * ``` */ export declare function FeatureCardSkeleton({ showAction, className, ...props }: FeatureCardSkeletonProps): import("react/jsx-runtime").JSX.Element;