export type NotificationPlacement = 'top-start' | 'top-center' | 'top-end' | 'bottom-start' | 'bottom-center' | 'bottom-end';

export type DropdownPlacement =
    | 'top-start'
    | 'top-center'
    | 'top-end'
    | 'bottom-start'
    | 'bottom-center'
    | 'bottom-end'
    | 'middle-start-top'
    | 'middle-start-bottom'
    | 'middle-end-top'
    | 'middle-end-bottom';
