import type { BentoClient } from '../client'; import type { FormResponse } from './types'; export declare class BentoForms { private readonly _client; private readonly _url; constructor(_client: BentoClient); /** * Returns all of the responses for the form with the specified identifier. * * @param formIdentifier string * @returns Promise\ */ getResponses(formIdentifier: string): Promise; }