/** Settings for {@link FixedToParentDirective} */ export declare class FixedToParentConfig { /** Is should be fixed to parent or not */ isEnabled: boolean; /** Recalculation interval of the element position in milliseconds */ recalculationIntervalInMs?: number; /** * Amount of calculations after scroll. * * Some browsers have animated scroll and need to run several iterations * with some delay between them to calculate actual element position. * * Unfortunately, there is no better way to observe the end of the scroll animation. **/ calculationIterationsCount?: number; }