import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link InputTextPassThrough} * @group Interface */ interface InputTextPassThroughOptions { /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption; } /** * Defines valid pass-through options in InputText. * @see {@link InputTextPassThroughOptions} * * @template I Type of instance. */ type InputTextPassThrough = PassThrough>; export type { InputTextPassThrough, InputTextPassThroughOptions };