export type StickToPositionType = 'TL' | 'TR' | 'TC' | 'T' | 'BR' | 'B' | 'BL' | 'BC'; type StickToProps = { parentNode: HTMLElement | undefined; position?: StickToPositionType; disabled?: boolean; stickToHookWidth?: boolean; }; export declare function stickTo(node: HTMLElement, props: StickToProps): false | { destroy(): void; }; export {};