import type { SystemStyleObject, ConditionalValue } from '../types' import type { PropertyValue } from '../types/prop-type' import type { Properties } from '../types/csstype' import type { Tokens } from '../tokens' export type FloatProperties = { offsetX?: ConditionalValue offsetY?: ConditionalValue offset?: ConditionalValue placement?: ConditionalValue<"bottom-end" | "bottom-start" | "top-end" | "top-start" | "bottom-center" | "top-center" | "middle-center" | "middle-end" | "middle-start"> } type FloatOptions = FloatProperties & Omit export declare function float(options?: FloatOptions): string