import { BilliaSDKServiceBase, IRestPaginatedResource } from '@apihawk/billia-sdk';
import { IAppcellPlugin } from './appcell-sdk.types';
export declare class AppcellSDKPlugin extends BilliaSDKServiceBase {
    /**
     * List plugins
     * @param {number} page
     * @param {number} pageSize
     * @returns {Promise<IRestPaginatedResource<IGearJob>>}
     */
    listPlugins(advanced?: boolean): Promise<IRestPaginatedResource<IAppcellPlugin>>;
}
