import React from 'react'; export interface SetupWidgetHeaderProps { /** Defaults to the translated "Setup" when omitted. */ title?: string | null; completedCount: number; totalCount: number; progressPercentage: number; isMobile: boolean; } /** * Widget header: title + "X/Y completed" ratio + progress bar. * - Desktop: title left, ratio + bar inline on the right. * - Mobile: large heading stacked above the ratio and a full-width bar. */ export declare const SetupWidgetHeader: ({ title, completedCount, totalCount, progressPercentage, isMobile, }: SetupWidgetHeaderProps) => React.JSX.Element; //# sourceMappingURL=SetupWidgetHeader.d.ts.map