import type { Placement } from './../types/Placement';
declare const placement: (position: Placement) => {
    top: string;
    right: string;
    bottom: string;
    left: string;
};
export { placement };
