/** * Skeleton components specifically for entity form/edit pages * Provides realistic loading states that match the actual form structure */ /** * Skeleton for the form page header without action buttons */ export declare function SkeletonFormHeader(): import("react/jsx-runtime").JSX.Element; /** * Skeleton for form field groups */ export declare function SkeletonFormFieldGroup({ fieldCount }: { fieldCount?: number; }): import("react/jsx-runtime").JSX.Element; /** * Skeleton for single form field (full width) */ export declare function SkeletonFormField({ isTextarea }: { isTextarea?: boolean; }): import("react/jsx-runtime").JSX.Element; /** * Skeleton for JSON/array fields */ export declare function SkeletonFormJsonField(): import("react/jsx-runtime").JSX.Element; /** * Skeleton for form card section */ export declare function SkeletonFormCard({ fieldCount, hasTextareas, hasJsonFields }: { fieldCount?: number; hasTextareas?: boolean; hasJsonFields?: boolean; }): import("react/jsx-runtime").JSX.Element; /** * Skeleton for form action buttons at the bottom */ export declare function SkeletonFormActions(): import("react/jsx-runtime").JSX.Element; /** * Complete skeleton for entity form/edit page * Matches the layout of EntityFormWrapper (p-6 + max-w-7xl mx-auto) */ export declare function SkeletonEntityForm({ fieldCount, hasTextareas, hasJsonFields }: { fieldCount?: number; hasTextareas?: boolean; hasJsonFields?: boolean; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=skeleton-form.d.ts.map