import React from 'react'; import './style.scss'; export interface ShowCodeButtonProps { /** Click handler */ onClick: () => void; /** Button text */ text?: string; /** Show icon */ showIcon?: boolean; /** Button variant */ variant?: 'primary' | 'success' | 'danger' | 'warning' | 'default' | 'outline'; /** Custom className */ className?: string; } export declare const ShowCodeButton: React.FC; //# sourceMappingURL=ShowCodeButton.d.ts.map