import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ButtonType` - The `ButtonType` object is used to describe the different types of buttons. * * @public */ export declare const ButtonType: { /** * `submit` - The button submits the form it is contained in. */ readonly Submit: "submit"; /** * `reset` - The button resets the form it is contained in. */ readonly Reset: "reset"; /** * `button` - The button does not submit or reset the form. */ readonly Button: "button"; }; /** * @public */ export type ButtonType = ValuesOf; //# sourceMappingURL=ButtonType.d.ts.map