import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition";
import { UserTypePropertyValue } from "../values";
export declare class UserTypeDisplaySettings extends PropertyDisplaySettingsBase {
}
export type UserTypeEditorSettings = {
    required?: boolean;
    disallowWhiteSpace?: boolean;
    rows?: number;
};
export declare const userTypePropertyDefinitionId: Guid;
export declare class UserTypePropertyDefinition extends PropertyDefinition<UserTypePropertyValue, UserTypeDisplaySettings, UserTypeEditorSettings> {
    id: Guid;
    typeName: string;
}
