import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link InputIcon.pt} * @group Interface */ interface InputIconPassThroughOptions { /** * Used to pass attributes to the host's DOM element. */ host?: PassThroughOption; /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption; } /** * Custom passthrough attributes for each DOM elements * @group Interface */ type InputIconPassThrough = PassThrough>; export type { InputIconPassThrough, InputIconPassThroughOptions };