export declare type PositionType = 'left' | 'right' | 'topLeft' | 'bottomLeft' | 'topRight' | 'bottomRight' | 'centerLeft' | 'centerRight' | 'topCenter' | 'bottomCenter'; export declare function rectContains(rect: ClientRect, { x, y }: { x: number; y: number; }): boolean;