import { type TPlacementOptions } from './resolve-placement'; /** * Returns the `position-try-fallbacks` value for a placement. * * @example * // Centered on the block-end edge (the default placement): * placementToTryFallbacks({ placement: { axis: 'block', edge: 'end', align: 'center' } }); * // => 'block-end span-inline-end, block-end span-inline-start, flip-block, * // block-start span-inline-end, block-start span-inline-start' */ export declare function placementToTryFallbacks({ placement }: { placement: TPlacementOptions; }): string;