import type { TransformOption } from '../types.js'; import { positionValues } from '../lib/values.js'; export { positionValues, positionShorthands } from '../lib/values.js'; export type PositionValue = (typeof positionValues)[number]; export interface PositionOptions { position: PositionValue; } export declare const getPosition: TransformOption;