import { IWebPartDefinition } from "../../types/webpart.types";
export declare function DeleteWebPart(siteUrl: string, fileServerRelativeUrl: string, webPartId: string): Promise<boolean>;
export declare function HideWebPart(siteUrl: string, fileServerRelativeUrl: string, webPartId: string, hidden: boolean): Promise<boolean>;
export declare function GetWebParts(siteUrl: string, fileServerRelativeUrl: string): Promise<IWebPartDefinition[]>;
export declare function GetWebPartById(siteUrl: string, fileServerRelativeUrl: string, webPartId: string): Promise<IWebPartDefinition>;
