import React from 'react'; interface SkeletonProps { className?: string; /** * Number of input fields to render on the right column (defaults to 4). */ fields?: number; } /** * MspProfileFormSkeleton * ----------------------------------------------------------------------------- * Loading state for the component used in the Share-Your-Stack * wizard (and any other area that re-uses the form). * * Design Notes: * – Two-column grid matching the live component (logo upload on the left, * text / numeric inputs on the right). * – Left column: square/circular media skeleton to represent logo uploader. * – Right column: label + input pair per field. * – Mobile (<768px) collapses to one column via grid existing classes. * – Uses UnifiedSkeleton system to stay consistent with global loading design. */ export declare function MspProfileFormSkeleton({ className, fields, }: SkeletonProps): React.JSX.Element; export {}; //# sourceMappingURL=msp-profile-form-skeleton.d.ts.map