interface reqBodyType {
    variables: any;
}
export declare class flasho {
    private endpoint;
    private config;
    trigger: (triggerName: string, reqBody: reqBodyType) => Promise<import("axios").AxiosResponse<any, any> | undefined>;
    constructor(endpoint: string, admin_secret_key: string);
}
export {};
