import * as React from 'react'; export interface QuickActionCardSkeletonProps extends React.HTMLAttributes { } /** * Loading placeholder for `QuickActionCard`. * * @description * Mirrors the visual layout of `QuickActionCard`: icon block + optional badge * in the top row, title + description text, and an action button. * * @example * ```tsx * {isLoading ? : } * ``` */ export declare function QuickActionCardSkeleton({ className, ...props }: QuickActionCardSkeletonProps): import("react/jsx-runtime").JSX.Element;