@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
15 lines (14 loc) • 437 B
TypeScript
import { ReactElement } from 'react';
interface ChildProps {
labelHelp?: string;
label?: string;
}
interface IProps {
shouldHideField: boolean | undefined;
onClear: () => void;
children: ReactElement<ChildProps>;
labelHelp?: string;
label?: string;
}
export declare function PageFormSecret({ onClear, shouldHideField, label, labelHelp, children }: IProps): import("react/jsx-runtime").JSX.Element;
export {};