import { FC } from 'react'; export interface HelpButtonProps { /** Additional CSS classes */ className?: string; /** Button variant */ variant?: 'default' | 'ghost' | 'icon'; /** Show label text */ showLabel?: boolean; /** Label text */ label?: string; } /** * HelpButton component * * @example * ```tsx * // Icon only * * * // With label * * ``` */ export declare const HelpButton: FC; //# sourceMappingURL=HelpButton.d.ts.map