import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link Divider.pt} * @group Interface */ interface DividerPassThroughOptions { /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption; /** * Used to pass attributes to the content's DOM element. */ content?: PassThroughOption; } /** * Defines valid pass-through options in Divider component. * @see {@link DividerPassThroughOptions} * * @template I Type of instance. */ type DividerPassThrough = PassThrough>; export type { DividerPassThrough, DividerPassThroughOptions };