facet-lib
Version:
React component library for the Bare Metal Installer
15 lines (14 loc) • 526 B
TypeScript
import * as React from 'react';
import { FieldProps } from '../ui/formik/types';
import './ClusterSshKeyField.css';
interface ClusterSshKeyFieldProps extends FieldProps {
isSwitchHidden: boolean;
onToggle: (isChecked: boolean) => void;
onClusterSshKeyVisibilityChanged: () => void;
onSshKeyBlur: () => void;
}
export declare const SshPublicKeyHelperText: React.FC<{
fieldId?: string;
}>;
declare const ClusterSshKeyField: React.FC<ClusterSshKeyFieldProps>;
export default ClusterSshKeyField;