import type { LayoutConfigValue } from '@lit-labs/virtualizer/layouts/shared/Layout.js'; import type { KeyFn } from '../../../Directives/Directives'; import type { RenderItemFunction } from './RenderItemFunction'; /** * Represents the `IVirtualizeElementProps` interface. * * @public */ export interface IVirtualizeElementProps { items: Array; renderItem: RenderItemFunction; keyFunction: KeyFn; layout: LayoutConfigValue; scroller: boolean; } //# sourceMappingURL=IVirtualizeElementProps.d.ts.map