import { FormValue as IFormValue } from '../common.js';
export default class FormValue implements IFormValue {
    label?: string;
    value?: string;
    constructor(label?: string, value?: string);
}
