/** * `value` prop of `toggle-button-input` in `@front.zen/mui` component is an object consisting of two properties: * `type` and `value` * @typeParam T - the type of property `type` * @public */ export type TypeValue = { value: string; type: T | null; };