import { ReporterFunction } from '../types'; export declare type StoreStatusOptions = { prefix?: string; store: string; independentLeaves?: boolean; force?: boolean; global?: boolean; registry?: string; reporter?: ReporterFunction; production?: boolean; development?: boolean; optional?: boolean; bin?: string; }; export declare type StrictStoreStatusOptions = StoreStatusOptions & { prefix: string; store: string; independentLeaves: boolean; force: boolean; global: boolean; registry: string; bin: string; }; declare const _default: (opts: StoreStatusOptions) => Promise; export default _default;