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