/// import type { ButtonProps } from '../../lib/ui/types.js'; interface TextButtonProps extends ButtonProps { color?: 'primary' | 'inherit'; disabled?: boolean; } export declare function TextButton({ color, ...buttonProps }: TextButtonProps): JSX.Element; export {};