/** * Returns slot fallback content with proper loading handling for shadow: false components. * When there's slot content, we must always render the element to capture it, * otherwise the slotted content will be visible even during loading state. * * @param fallbackText - The default text to display when there's no slot content * @param options - Options object containing hasSlot and loading state * @returns JSX content for the slot fallback * * @example * ```tsx * render() { * return ( * * ); * } * ``` */ export declare function slotFallbackText(fallbackText: string, { hasSlot, loading }: { hasSlot: boolean; loading?: boolean; }): any;