import { Ref } from 'vue'; type UseOffsetStickyRootMargin = { margin: Ref; }; export declare const overrideMargins: Ref; /** * The useOffsetStickyRootMargin composition is used to provide a rootMargin * value for sticky headers that are intended to align with the top of the page, * or just below the mobile nav on smaller screens. Use in conjunction with the * usePositionStickyObserver composition from vue-compositions. * @returns UseOffsetStickyRootMargin */ export declare function useOffsetStickyRootMargin(): UseOffsetStickyRootMargin; export {};