import type { HostComponent, ViewProps } from "react-native"; import type { DirectEventHandler } from "react-native/Libraries/Types/CodegenTypes"; type HeightChangedEvent = { height: string; }; type MarginChangedEvent = { marginTop: string; marginRight: string; marginLeft: string; marginBottom: string; }; export interface NativeProps extends ViewProps { placeholderName: string; onWidgetHeightChanged?: DirectEventHandler; onWidgetMarginChanged?: DirectEventHandler; } declare const _default: HostComponent; export default _default;