import { IPropertyPaneCustomFieldProps } from '@microsoft/sp-property-pane';
export interface IPropertyFieldPasswordProps {
    key: string;
    value: string;
    label?: string;
    onChanged?: (newValue: any) => void;
}
export interface IPropertyFieldPasswordPropsInternal extends IPropertyFieldPasswordProps, IPropertyPaneCustomFieldProps {
}
//# sourceMappingURL=IPropertyFieldPassword.d.ts.map