import type { Node } from "domhandler";
export declare class SourceReduxStoreState {
    constructor(
    /** @internal */
    dom: Node[]);
    name(): string | null;
    description(): string | null;
    ratingValue(): number | null;
    ratingCount(): number | null;
    users(): number | null;
    version(): string | null;
    url(): string | null;
    image(): string | null;
    size(): string | null;
    lastUpdated(): string | null;
}
