goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
16 lines • 494 B
TypeScript
import { default as React } from 'react';
import { FormFieldStyles } from '../../../../theme';
export interface SupernetFieldValue {
address: string;
mask: number;
}
export interface SupernetFieldProps {
value: SupernetFieldValue;
onChange: (value: SupernetFieldValue) => void;
label?: string;
required?: boolean;
styles?: FormFieldStyles;
}
declare const SupernetField: React.FC<SupernetFieldProps>;
export default SupernetField;
//# sourceMappingURL=index.d.ts.map