import { PassThrough, PassThroughOption } from 'primeng/api'; type IconFieldIconPosition = 'right' | 'left'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link IconField.pt} * @group Interface */ interface IconFieldPassThroughOptions { /** * 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 IconFieldPassThrough = PassThrough>; export type { IconFieldIconPosition, IconFieldPassThrough, IconFieldPassThroughOptions };