type reqParams = { title: string; body: string; name?: string; size?: string; }; declare const create: (params: reqParams) => HTMLElement; declare const close: (drawer: HTMLElement) => Promise; declare const loading: (drawer: HTMLElement) => void; declare const ready: (drawer: HTMLElement) => void; declare const index_close: typeof close; declare const index_create: typeof create; declare const index_loading: typeof loading; declare const index_ready: typeof ready; declare namespace index { export { index_close as close, index_create as create, index_loading as loading, index_ready as ready }; } export { create as a, close as c, index as i, loading as l, ready as r };