import type React from "react"; export interface DeviceCardSkeletonProps { /** * Additional CSS classes */ className?: string; } /** * DeviceCardSkeleton - Loading skeleton matching DeviceCard exact layout * * Matches the structure of DeviceCard: * - Row 1: Device icon + Device name + More button * - Row 2: OS badge + Organization icon + Organization name * - Row 3: Status badge + Last seen * * Prevents layout jumps by matching exact dimensions. */ export declare function DeviceCardSkeleton({ className }: DeviceCardSkeletonProps): React.JSX.Element; /** * DeviceCardSkeletonGrid - Grid of device card skeletons * * Matches DevicesGrid layout with responsive columns: * - Mobile: 1 column * - Tablet (md): 2 columns * - Desktop (lg): 3 columns * - Large (xl): 4 columns */ export declare function DeviceCardSkeletonGrid({ count, className }: { count?: number; className?: string; }): React.JSX.Element; //# sourceMappingURL=device-card-skeleton.d.ts.map