import { ForgeChildren } from './types'; export interface PortalRequestCreatePropertyPanelPrimitiveProps { children: ForgeChildren; fieldValue: { value: CustomPortalFieldValue; updated: boolean; }; } export declare type CustomPortalFieldValue = { data: object | null; isValid: boolean; }; export interface PortalTextAreaProps { name: string; placeholder?: string; isMonospaced?: boolean; spellCheck?: boolean; onBlur: () => Promise | void; value?: string; } export declare const INVALID_APP_DATA = "Validation error: Invalid data format."; export declare const MISSING_FIELDS = "Validation error: Missing app field."; //# sourceMappingURL=portaRequestCreatePropertyPanelTypes.d.ts.map