import { IPropertyPaneCustomFieldProps } from '@microsoft/sp-property-pane';
import { MessageBarType } from '@fluentui/react/lib/MessageBar';
export interface IPropertyFieldMessageProps {
    key: string;
    text: string;
    messageType: MessageBarType;
    truncate?: boolean;
    multiline?: boolean;
    className?: string;
    isVisible: boolean;
}
export interface IPropertyFieldMessagePropsInternal extends IPropertyFieldMessageProps, IPropertyPaneCustomFieldProps {
}
//# sourceMappingURL=IPropertyFieldMessage.d.ts.map