export type Position = (typeof POSITION)[keyof typeof POSITION]; export type Action = (typeof ACTION)[keyof typeof ACTION]; export declare const POSITION: { readonly TOP: "top"; readonly BOTTOM: "bottom"; readonly LEFT: "left"; readonly RIGHT: "right"; }; export declare const ACTION: { OPEN: string; CLOSE: string; TOGGLE: string; }; export declare const EVENT_NAMESPACE: "bryt:drawer";