import type { MutableRefObject } from 'react'; import type { AlignmentControlsData, SlotInfo } from '../schema-types/types'; /** * This function should return the alignment controls an element can have enabled, based on the width and height of slot vs entity + slot padding. * * @param s SlotData * @param e EntityRef * @param c ContenTypeId * @returns ControlsData */ export declare const getAlignmentControlsData: (s: SlotInfo, e: MutableRefObject, c: string) => AlignmentControlsData;