import type React from "react"; export interface OrganizationCardSkeletonProps { /** * Additional CSS classes */ className?: string; /** * Show footer stats area */ showFooter?: boolean; /** * Show description area */ showDescription?: boolean; /** Optional tailwind classes to override the card container background & border */ containerClassName?: string; } /** * OrganizationCardSkeleton - Loading skeleton matching OrganizationCard exact layout * * Matches VendorCard skeleton structure for 100% visual parity. * * Structure: * - Header: 60x60px org logo + title + subtitle * - Description: Fixed 48px height with 2-line clamp * - Footer: Stats display area * * Prevents layout jumps by matching exact dimensions. */ export declare function OrganizationCardSkeleton({ className, containerClassName, showFooter, showDescription }: OrganizationCardSkeletonProps): React.JSX.Element; /** * OrganizationCardSkeletonGrid - Grid of organization card skeletons * * Matches responsive grid layout: * - Mobile: 1 column * - Tablet (md): 2 columns * - Desktop (xl): 3 columns */ export declare function OrganizationCardSkeletonGrid({ count, className, containerClassName, showFooter, showDescription }: { count?: number; className?: string; containerClassName?: string; showFooter?: boolean; showDescription?: boolean; }): React.JSX.Element; //# sourceMappingURL=organization-card-skeleton.d.ts.map