import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface QuickActionCardSkeletonProps extends Omit, 'children'> { /** * Layout mode matching QuickActionCard * @default 'horizontal' */ mode?: 'horizontal' | 'vertical'; } /** * Skeleton placeholder for QuickActionCard component. * Renders a skeleton that mimics the QuickActionCard layout. */ declare const QuickActionCardSkeleton: import("react").ForwardRefExoticComponent>; export default QuickActionCardSkeleton;