1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/PickersTextField/PickersOutlinedInput/PickersOutlinedInput.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

10 lines
No EOL
420 B
TypeScript

import * as React from 'react';
import { PickersInputBaseProps } from "../PickersInputBase/index.js";
export interface PickersOutlinedInputProps extends PickersInputBaseProps {
notched?: boolean;
}
/**
* @ignore - internal component.
*/
declare const PickersOutlinedInput: React.ForwardRefExoticComponent<Omit<PickersOutlinedInputProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { PickersOutlinedInput };