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