import { IPropertyPaneCustomFieldProps, IPropertyPaneTextFieldProps } from '@microsoft/sp-property-pane';
import { IPropertyFieldHeaderCalloutProps } from '../../common/propertyFieldHeader/IPropertyFieldHeader';
export interface IPropertyFieldTextWithCalloutPropsInternal extends IPropertyPaneCustomFieldProps, IPropertyPaneTextFieldProps, IPropertyFieldHeaderCalloutProps {
    onChanged?: (newValue: any) => void;
}
/**
 * Public properties of PropertyFieldTextWithCallout custom field
 */
export interface IPropertyFieldTextWithCalloutProps extends IPropertyPaneTextFieldProps, IPropertyFieldHeaderCalloutProps {
    key: string;
    onChanged?: (newValue: any) => void;
}
//# sourceMappingURL=IPropertyFieldTextWithCallout.d.ts.map