8 lines
290 B
TypeScript
8 lines
290 B
TypeScript
import React from 'react';
|
|
import { Config } from '../../../../types/Config';
|
|
export default function Password(props: {
|
|
password: Required<Config>['Password'];
|
|
setValue: (path: string, value: any) => void;
|
|
setValues: (value: Record<string, any>) => void;
|
|
}): React.JSX.Element;
|