import React from 'react'; import ILocalContainerProps from '../../../common/structures/ILocalContainerProps'; interface IProps extends ILocalContainerProps { name?: string; onChange?: any; value?: string; invalid?: boolean; invalidMessage?: string; type?: 'password' | 'text'; checkbox?: boolean; } declare const InputPasswordToggle: (props: IProps) => React.JSX.Element; export default InputPasswordToggle; //# sourceMappingURL=InputPasswordToggle.d.ts.map