import { error, fullLoad, inform, loading, notFound, ready } from './page/index.js'; type PageParams = { size?: string; icon?: string; title?: string; template?: string; button?: { side?: boolean; tab?: boolean; }; sidebar?: string; tabbar?: string; actbar?: string; uri?: string; }; declare const create: (params: PageParams) => boolean; type index_PageParams = PageParams; declare const index_create: typeof create; declare const index_error: typeof error; declare const index_fullLoad: typeof fullLoad; declare const index_inform: typeof inform; declare const index_loading: typeof loading; declare const index_notFound: typeof notFound; declare const index_ready: typeof ready; declare namespace index { export { type index_PageParams as PageParams, index_create as create, index_error as error, index_fullLoad as fullLoad, index_inform as inform, index_loading as loading, index_notFound as notFound, index_ready as ready }; } export { type PageParams as P, create as c, index as i };