import type { IDisableableProps } from '../../../Behaviors/Disableable'; /** * Represents the `ILightChainElementProps` interface. * * @public */ export interface ILightChainElementProps extends IDisableableProps { count: number; state: 'on' | 'off' | 'auto'; } //# sourceMappingURL=ILightChainElementProps.d.ts.map