export interface Shop {
    id: number;
    name: string;
}
export interface Category {
    id: number;
    name: string;
}
export declare function getShop(): Promise<Shop | null>;
export declare function getCategories(): Promise<Category[]>;
export declare function getShopPlugins(): Promise<string[]>;
