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