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