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