import { ServiceProviderType } from "./ServiceProviderType";
export declare class OrganizationService {
    /** Service key used in actions for all org stories
     * @pattern ^[A-Za-z0-9-_]{1,30}$
     */
    key: string;
    /** Services parameters for actions across all stories */
    data: object;
    /** Services provider type */
    serviceProvider: ServiceProviderType;
}
