export declare const top: 'top'; export declare const bottom: 'bottom'; export declare const right: 'right'; export declare const left: 'left'; export type Alignment = 'start' | 'end'; export type Side = 'top' | 'right' | 'bottom' | 'left'; export type AlignedPlacement = `${Side}-${Alignment}`;